index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-04-10 | Show size in partition string representation | Dylan Taylor | |
2021-04-10 | Modified encrypted partitions to use partuuid for now. | Anton Hvornum | |
2021-04-09 | Removed some debugging. | Anton Hvornum | |
2021-04-09 | Attempting to correct some inconsitencies in disk-parent reporting. | Anton Hvornum | |
2021-04-09 | Attempting to correct some inconsitencies in disk-parent reporting. | Anton Hvornum | |
2021-04-09 | Attempting to correct some inconsitencies in disk-parent reporting. | Anton Hvornum | |
2021-04-09 | Attempting to fix auto-detection of encrypted drives. So that #124 can ↵ | Anton Hvornum | |
perform reverse detection on partitions and detect encryption. | |||
2021-04-09 | Attempting default value None for block device to partition. | Anton Hvornum | |
2021-04-09 | Wrong variable name | Anton Hvornum | |
2021-04-09 | Added disk helper function get_partitions_in_use(). Which returns which ↵ | Anton Hvornum | |
partions are being used at a given mount location, including children. | |||
2021-04-09 | Wrong variable. | Anton Hvornum | |
2021-04-09 | Made sure the mount target path exists before mounting. | Anton Hvornum | |
2021-04-04 | Fixes: AttributeError: 'BlockDevice' object has no attribute 'keep_partitions' | Anton Hvornum | |
2021-04-04 | encryption_passwed -> encryption_password | Anton Hvornum | |
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-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 | 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 | 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-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-21 | Removed some debugging output. | Anton Hvornum | |
2021-03-21 | Added an option to force-flush a blockdevice cache. creating a new ↵ | Anton Hvornum | |
Filesystem() now triggers a flush of the cache since all partitions are removed. There shouldn't be any harm in even bypassing the cache, but it's there for a few reasons. | |||
2021-03-21 | Debugging a partioning case. | Anton Hvornum | |
2021-03-21 | Centralized a partition call to use the logging feature raw_parted(). | Anton Hvornum | |
2021-03-21 | Added more debug level information to parted in case it goes heywire. | Anton Hvornum | |
2021-03-21 | Marking newly created partitions as safe to format in use_entire_disk(), by ↵ | Anton Hvornum | |
adding allow_formatting=True to the partitions. Also added some debugging to help aiding in support cases. | |||
2021-03-21 | Added some more debugging and error logs to the project. Mainly to indicate ↵ | Anton Hvornum | |
background tasks and errors to the debug log in case users need to submit it. | |||
2021-03-21 | Fixing minor issue in v2.1.2-rc3. The use_entire_disk() helper function was ↵ | Anton Hvornum | |
adding a partition with the format vfat, but parted doesn't understand this and needs fat32. | |||
2021-03-14 | Added some error handling. | Anton Hvornum | |
2021-03-14 | encrypted devices won't always report as a child to a device, can't reliably ↵ | Anton Hvornum | |
look for a 'parent' of a encrypted drive when it doesn't show up. Hence, the DiskError() can't be raised just because we can't find a parent. The parent should be the current path if no other option was found. |