index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-04-04 | Add lowercase conversion for usernames | SecondThundeR | |
2021-04-04 | Merge branch 'master' into fix-repo-url | Anton Hvornum | |
2021-04-04 | encryption_passwed -> encryption_password | Anton Hvornum | |
2021-04-04 | Update repo to archlinux/archinstall | Rafael Fontenelle | |
2021-04-04 | Fix misspellings | Rafael Fontenelle | |
2021-04-03 | Forgot option PARTUUID to lsblk | Anton Hvornum | |
2021-04-03 | This should fix #151, by using lsblk instead of /dev/disk/by-partuuid. It ↵ | Anton Hvornum | |
also cleaned up the installer code quite a bit during the bootloader installation. Will do the same for encrypted drives later on by implementing UUID on a BlockDevice (disk) level. | |||
2021-04-03 | This should correct #152. When a newly /boot partition is created with no ↵ | Anton Hvornum | |
content or incorrect filesystem (meaning, no file system yet), the .has_content() call will crash due to incorrect fstype. Which means we should be able to skip the check and assume it's safe to format. Because there's no way (?) other OS:es can store something on the boot partition on a broken FS. | |||
2021-04-03 | Converted the raise exception into a log. Whenever blockdevice is unsure of ↵ | Anton Hvornum | |
what type it's working on, it will not log it as a debug message. | |||
2021-04-03 | Removed a breaking change while fixing hardware raids | Anton Hvornum | |
2021-04-03 | This partially addresses #151. Which might require more than just the path ↵ | Anton Hvornum | |
being returned. As the blkid might not be correctly identifying it in the bootloader step. But we'll have to test and see. | |||
2021-04-03 | This should correct #135. I'll have to investigate other places where this ↵ | Anton Hvornum | |
logic might be as well and correct those. | |||
2021-04-03 | Fixes #149 as well as --help. This will be added in the next patch release. | Anton Hvornum | |
2021-04-02 | Join cryptsetup args using shlex | Pyfisch | |
Ensure that all arguments are properly quoted. Improve readability by using long-form arguments only. Use identical arguments for both cryptsetup calls, to prevent them from accidentally diverging in future commits. | |||
2021-04-02 | Merge pull request #134 from conqp/master | Anton Hvornum | |
General code cleanup | |||
2021-04-01 | Missing variable | Anton Hvornum | |
This should fix #135 | |||
2021-04-01 | Remove useless __init__ methods | Richard Neumann | |
2021-04-01 | Move class-related docstring to class definition | Richard Neumann | |
2021-04-01 | Simplify boolean checks | Richard Neumann | |
2021-03-30 | Add range check to disk selection | kpcyrd | |
2021-03-30 | Add range check to generic_select | kpcyrd | |
2021-03-29 | Removed debugging and finalized fix. | Anton Hvornum | |
2021-03-29 | Added some debugging. | Anton Hvornum | |
2021-03-29 | Adding .encrypted logic after .format calls to correctly identify partitions ↵ | Anton Hvornum | |
as encrypted/not-encrypted. This after a .flush_cache has been called. | |||
2021-03-29 | Added some debugging. | Anton Hvornum | |
2021-03-29 | Reworking cache logic to not loose .encrypted flag on partitions after ↵ | Anton Hvornum | |
flushing cache. | |||
2021-03-29 | Rolling back change to check parent blockdevice for safe formatting, it ↵ | Anton Hvornum | |
would wipe the boot partition if the boot partition for multiple drives was shared on the specific drive. | |||
2021-03-29 | Removing a flush of the cache that was excessive. | Anton Hvornum | |
2021-03-29 | Experimenting with cache, carrying over .allow_formatting | Anton Hvornum | |
2021-03-29 | Experimenting with carrying over flags across cache flush. This to solve ↵ | Anton Hvornum | |
issues when flush is cleared and target mountpoints gets lost, making it impossible to do .find_mountpoint('/') later on for instance. | |||
2021-03-29 | Allowing individual partitions safety checks to rely on the parent ↵ | Anton Hvornum | |
blockdevice keep_partitions status. | |||
2021-03-29 | Added support for flushing a BlockDevice() cache after a partition has been ↵ | Anton Hvornum | |
formatted. This is to avoid internal confusion of which partitions are encrypted or not when going from Encrypted -> Un-encrypted setups. | |||
2021-03-29 | Toned down the debugging a bit. | Anton Hvornum | |
2021-03-29 | Moved some debugging to catch more variable settings. | Anton Hvornum | |
2021-03-29 | Adding callstack to debug output for easier debugging. Removed hardcoded ↵ | Anton Hvornum | |
debug crash | |||
2021-03-29 | Debugging | Anton Hvornum | |
2021-03-29 | Merge pull request #123 from Torxed/torxed-v2.2.3 | Anton Hvornum | |
Reverting .strip() logic and moving the check into the get_password()… | |||
2021-03-29 | Reverting .strip() logic and moving the check into the get_password() function. | Anton Hvornum | |
2021-03-29 | Fix spelling error in filesystem choice | Didr | |
Fixes a simple spelling error when the user is asked to select a filesystem. "Select which filesystem your main partition should use (by number **of** name)" should be **or**. | |||
2021-03-29 | Fixing rare occation where partitions dissapear just before .format(). | Anton Hvornum | |
2021-03-29 | Fixing un-encrypted drives matching on block encrypted. | Anton Hvornum | |
2021-03-28 | Added some more useful debug data to the log. | Anton Hvornum | |
2021-03-28 | Adding debug to correct for a potential issue where partitions get marked as ↵ | Anton Hvornum | |
encrypted even tho \!disk-password was neven set. | |||
2021-03-28 | Fixed a path-check issue with Time Zones. | Anton Hvornum | |
2021-03-24 | Fixes an issue with completely empty hard drives | Anton Hvornum | |
If empty hard drives are being set up for the first time, then `.has_content()`'s `mount` call will fail with `wrong fstype` since there's no filesystem yet. First step in this case is to check for that scenario, then check for content. | |||
2021-03-24 | Removed vfat as an option for the root partition | Anton Hvornum | |
2021-03-23 | Also setting cwd (bad choice of name) to the workdir if one was specified. ↵ | Anton Hvornum | |
Which makes the trace.log to end up in the workdir as well. | |||
2021-03-23 | Enabling archinstall.sys_command() to get a working directory when ↵ | Anton Hvornum | |
executing. The sys_command() is working pretty well for this very specific need, but this is an attempt to making it a bit more generic. A more general overhaul of the command should be done at some point. | |||
2021-03-23 | Corrected recursion loop in log() calling log() before setting the new path ↵ | Anton Hvornum | |
for the log file on errors. | |||
2021-03-23 | Partially corrects for #116. We still don't detect if we're running as root ↵ | Anton Hvornum | |
(need to investigate if we need to run as root first). But this should at least hot-swap the log-file to the current working directory and place the logfile there. |