index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-11-20 | Incorrect location usage of AVAILABLE_GFX_DRIVERS | Anton Hvornum | |
#710 | |||
2021-11-18 | Adding a cmd_history.txt log under /var/log/archinstall/ (#737) | Anton Hvornum | |
* Adding a cmd_history.txt log under /var/log/archinstall/ to get a clear picture of which commands was executed. | |||
2021-11-18 | Merged PR #736 - Partially addresses #710 | Anton Hvornum | |
Adding in a hard exception if `--config` can't be loaded when given. | |||
2021-11-18 | Fixed spelling error on variables | Anton Hvornum | |
2021-11-18 | Added an exception if configuration cannot be loaded, to avoid confusion | Anton Hvornum | |
2021-11-18 | Merged PR #735 - Removes delays from Partition()._safe_uuid | Anton Hvornum | |
Adds Partition()._safe_uuid as a addon to Partition().uuid without exceptions | |||
2021-11-18 | Added docstring | Anton Hvornum | |
2021-11-18 | Reworked _safe_uuid() to be it's own function without timeouts. | Anton Hvornum | |
2021-11-18 | Reworked the last uuid fix, and introduced _safe_uuid which does the same ↵ | Anton Hvornum | |
thing but handles the DisKerror. This way we can use it in more places. | |||
2021-11-18 | Merge pull request #734 from archlinux/torxed-fix-luks | Anton Hvornum | |
Error handling when PARTUUID is missing during __repr__ | |||
2021-11-18 | Error handling when PARTUUID is missing during __repr__ | Anton Hvornum | |
2021-11-18 | Merge PR #733 - Adds GNOME Software via packagekit | Anton Hvornum | |
Add `gnome-software-packagekit-plugin` | |||
2021-11-18 | Add `gnome-software-packagekit-plugin` | Atirut Wattanamongkol | |
This allows GNOME Software to work out of the box. I don't know why it's not a dependency, but GNOME Software is kinda borked without it. | |||
2021-11-18 | Merge PR #732 - Fixed #718 | Anton Hvornum | |
Swapped .get() statement for a verification om Partition().uuid | |||
2021-11-18 | Swapped .get() statement for a verification. This ensures Partition().uuid ↵ | Anton Hvornum | |
doesn't immediately return None | |||
2021-11-18 | Added a log message for when xorg fails a certain step. (#731) | Anton Hvornum | |
* Added a log message for when xorg fails a certain step. * Fixed f-string issues. Co-authored-by: Anton Hvornum <anton.feeds@gmail.com> | |||
2021-11-18 | Increased disk delays by 100% (for unsuccessful operations), successful ↵ | Anton Hvornum | |
should still be quick. (#730) Co-authored-by: Anton Hvornum <anton.feeds@gmail.com> | |||
2021-11-17 | Fixing broken encryption support in GRUB (#724) | Anton Hvornum | |
* Added multiple `partprobe` calls and added a `.partprobe()` function on partitions, filesystem and blockdevice. * Adding retry attempts to all UUID related operations tied to the boot process * Tweaked logging for mounting and disk related operations * Removed potential SysCall exception disruptor causing exceptions to go by unnoticed * Increased the start position from 1MiB to 5MiB of /boot partition * Optimized the GRUB installation & config code * Improved Partition().uuid to never return None. Instead it will raise an exception if it can't get a PARTUUID within X retries with Y delay per attempt. * Increased sleep timer for partition uuid retrieval, because even with a 3 second sleep it wasn't long enough even on fast devices. * Make GRUB install to /dev/sda instead of /dev/sda1. * Added 10 retries for retreiving PARTUUID with a one second sleep. Instead of increasing the sleep simply add more retries until we find a good balance on slower disks. | |||
2021-11-17 | Merge PR #716 - Support for efistub-bootloader (API only) | Anton Hvornum | |
Add EFISTUB bootloader support through config/api calls using: ```json { "bootloader": "efistub", "kernels": [ "linux", "linux-lts" ] } ``` | |||
2021-11-16 | Merge pull request #723 from archlinux/torxed-fix-boot-entries | Anton Hvornum | |
Clarification on boot entries when using multiple kernels | |||
2021-11-16 | Clarification on boot entries when using multiple kernels | Anton Hvornum | |
2021-11-16 | Merge PR #722 - Fixes #721 | Anton Hvornum | |
Safe dictionary retrieval | |||
2021-11-16 | Safe dictionary retrieval | Anton Hvornum | |
2021-11-16 | Merge PR #714 - Fix empty drives causing issues | Anton Hvornum | |
* Removed the GPT vs MBR lookup on __enter__ * Removed redundant `boot_partition` lookup during GRUB configuration | |||
2021-11-16 | Accidental stdout redirect into 1 | Anton Hvornum | |
2021-11-16 | removed redundant import | Anton Hvornum | |
2021-11-16 | Removed redundant boot-partition retrieval. | Anton Hvornum | |
2021-11-16 | Linting issues | Anton Hvornum | |
2021-11-16 | Added more logging for debugging purposes | Anton Hvornum | |
2021-11-16 | Improved error message when failing to detect mount information. | Anton Hvornum | |
2021-11-16 | Fix unknown-ucode message for EFISTUB bootloader | Ettore Forigo | |
2021-11-15 | Merge pull request #715 from archlinux/torxed-add-mntpoint-arg | Anton Hvornum | |
Adding in --mount-point argument, which overrides storage['MOUNT_POINT'] | |||
2021-11-15 | Fix boot partition detection for EFISTUB bootloader | Ettore Forigo | |
2021-11-14 | Add EFISTUB bootloader support | Ettore Forigo | |
2021-11-13 | Adding in --mount-point argument, which overrides storage['MOUNT_POINT'] | Anton Hvornum | |
2021-11-12 | Removed the GPT vs MBR lookup on __enter__ as it's no longer necessary to ↵ | Anton Hvornum | |
validate this on instance creation. load_layout() Uses this only to detect what partition table format it should use when wiping the drive. Other than that we only check if MBR and part numbers are > 3, that's the only use of this variable at this moment. | |||
2021-11-11 | Merged PR #711 - Fixing disk "ghosting" issues using partprobe | Anton Hvornum | |
* Adding partprobe at strategic places. * Swapped `for partition in blockdevice` to `for uuid, partition in blockdevice.partitions.items()` instead as `__iter__` for debugging purposes. * `get_mount_info()` now causes a exception rather than returning nothing if there is nothing to be shown. This to avoid issues where in places this is crucial information and it went by unnoticeable. Using exception handlers where it doesn't matter if there's any information or not. | |||
2021-11-11 | Merged PR #713 - Fixes #712 | Anton Hvornum | |
Removed assumptions that !user and !super-users exists. | |||
2021-11-11 | Removed assumptions that !user and !super-users exists. | Anton Hvornum | |
2021-11-11 | Converted partprobe call into a function. | Anton Hvornum | |
2021-11-11 | Dealt with exception in partition | Anton Hvornum | |
2021-11-11 | Added a hard exception for when mount information can't be detected | Anton Hvornum | |
2021-11-11 | Added more partprobe's | Anton Hvornum | |
2021-11-11 | Added more debug output for get_mount_info() | Anton Hvornum | |
2021-11-11 | Improved partition.uuid handling of lsblk information | Anton Hvornum | |
2021-11-11 | Tweaked partitions usage in blockdevice | Anton Hvornum | |
2021-11-11 | Tweaked partitions usage in blockdevice | Anton Hvornum | |
2021-11-11 | Added more debugging (some duplicate, but that's fine) | Anton Hvornum | |
2021-11-11 | Adding in debugging | Anton Hvornum | |
2021-11-11 | elif -> if | Anton Hvornum | |