index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-04-09 | Removed some debugging. | Anton Hvornum | |
2021-04-09 | List function call error. | 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 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 | fixed some typos and changed up how we detect if we have to enable/install ↵ | advaithm | |
network manager | |||
2021-04-09 | moved around the if block | advaithm | |
2021-04-09 | fixed typo | advaithm | |
2021-04-09 | networkmanager support | advaithm | |
2021-04-09 | Assume yes is the user's intention if empty response for pipewire prompt | Dylan Taylor | |
2021-04-09 | Change phrasing to indicate pulseaudio as default | Anton Hvornum | |
2021-04-09 | Move choice into guided installation instead of DEs | Dylan M. Taylor | |
Arch wiki says packages should enable the user services automatically | |||
2021-04-09 | Moved the 'use /mnt' logic to during disk selection. | Anton Hvornum | |
2021-04-09 | Added a 'use /mnt' option to the formatted #124. This has not yet been ↵ | Anton Hvornum | |
tested, but the logic should work according to the new API layout for Installation(). | |||
2021-04-09 | Bringing in changes from master | Anton Hvornum | |
2021-04-09 | Change of variables to support new partition lookup. | Anton Hvornum | |
2021-04-09 | Fixed some log output logic for the boot partition. | Anton Hvornum | |
2021-04-09 | Fixed some log output logic for the boot partition. | Anton Hvornum | |
2021-04-09 | Syntax error | Anton Hvornum | |
2021-04-09 | Started patching HOOKS and MODULES based on partition iteration. Also fixed ↵ | Anton Hvornum | |
some pseudo code. | |||
2021-04-09 | Wrong use of hostname in the set_hostname() function. | Anton Hvornum | |
2021-04-09 | Fixed set_hostname() default. | Anton Hvornum | |
2021-04-09 | Reworked Installation() to have self.target instead of self.mountpoint, to ↵ | Anton Hvornum | |
be more consistent and remove the hits that it has anything to do with partitions/hardware. | |||
2021-04-09 | Reworked Installation() to have self.target instead of self.mountpoint, to ↵ | Anton Hvornum | |
be more consistent and remove the hits that it has anything to do with partitions/hardware. | |||
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-09 | Merge pull request #250 from insanemal/insanemal-patch-2 | Anton Hvornum | |
OOB in generic_selection | |||
2021-04-09 | Off by one in generic_selection out of bounds check | Insanemal | |
Out of bounds check in generic_selection is using >= on list. Lists are zero based. If you put in a value that equals the number of items in the list you get an out of bounds error. Removed the equals part of the test as last item in list/dictionary items is len(list)-1 not len(list) | |||
2021-04-09 | Fix typo that causes crash when creating encrypted LUKS partition (closes #248) | Alexander Seiler | |
2021-04-08 | Reworked the mkinitcpio configuration to be more robust according to the ↵ | Anton Hvornum | |
logic behind #91 and in prep for #145. Also in prep for #124 the lookup of partitions have been prepared here. We now need a reverse-lookup function. | |||
2021-04-08 | Starting implementing #124. The installer will be detatched from block ↵ | Anton Hvornum | |
devices and partitions. Instead it will rely on a given destination to pacstrap to. From there, it should be able to do reverse-lookups on the target and base it's information and choises from there. This removes any form of partitioning logic, hardware logic and other things from the initialization of the installer. These things should be explicitly called from the installers functions instead. Such as .set_hostname() instead of passing it as a initiation variable. | |||
2021-04-08 | Merge pull request #243 from archlinux/torxed-patch-master | Anton Hvornum | |
Re-working examples/minimal.py | |||
2021-04-08 | I simplified the countdown, by moving it into it's own function instead of ↵ | Anton Hvornum | |
wrapped inside guided.. This can now be used by others for a simple countdown. I also re-worked the minimal.py example to work with the new internal partitioning logic API as well as support some flags from archinstall.arguments to minimize user input requirements to just one single question. This one question will most likely go away too, but stays for simplicity right now. | |||
2021-04-08 | Remove nano from base packages | Dylan M. Taylor | |
2021-04-08 | Added a safety check to verify that the encrypted partition exists at least ↵ | Anton Hvornum | |
before trying to open it. | |||
2021-04-08 | Wrong indentation on comment. | Anton Hvornum | |
2021-04-08 | Merge branch 'master' into quality-of-life | Dylan M. Taylor | |
2021-04-08 | Disable post-install hooks for now | Dylan Taylor | |
2021-04-08 | Add filtration on top level profile | Dylan Taylor | |
2021-04-08 | added _post_install hook. | advaithm | |
2021-04-08 | Fixing glitch in variable use after moving to __packages__ definition. | Anton Hvornum | |
2021-04-08 | Corrected the new-line parameter | Anton Hvornum | |
2021-04-08 | Fix incorrect behavior for empty sudo username | SecondThundeR | |
2021-04-08 | Corrected for keymap before encrypt hook | Anton Hvornum | |
Also think that we should patch mkinitcpio, not replace it. Especially in the btrfs case where we simply just want to add `btrfs` to the `MODULES` section. | |||
2021-04-08 | Add console_scripts archinstall entry point | Pyfisch | |
archinstall should be callable from the command-line. Previously this was achieved with a shell script, however Python packages contain a built in way to to this via the entry points mechanism. |