index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-12-02 | Add simple menu for better UX (#660) | Daniel | |
* Add simple menu for better UX * Add remove external dependency * Fix harddisk return value on skip * Table output for partitioning process * Switch partitioning to simple menu * fixup! Switch partitioning to simple menu * Ignoring complexity and binary operator issues Only in simple_menu.py * Added license text to the MIT licensed file * Added in versioning information * Fixed some imports and removed the last generic_select() from user_interaction. Also fixed a revert/merged fork of ask_for_main_filesystem_format() * Update color scheme to match Arch style better * Use cyan as default cursor color * Leave simple menu the same Co-authored-by: Daniel Girtler <girtler.daniel@gmail.com> Co-authored-by: Anton Hvornum <anton.feeds+github@gmail.com> Co-authored-by: Dylan M. Taylor <dylan@dylanmtaylor.com> | |||
2021-11-28 | Adds version to user_conf.json | Anton Hvornum | |
The key is never read anywhere, but would be useful in debugging purposes. | |||
2021-11-26 | Updated examples, fix #772 | Anton Hvornum | |
2021-11-24 | Added error handling to guided surrounding disk_layouts | Anton Hvornum | |
2021-11-23 | Fix error at end of installation from missing method import | Dylan Taylor | |
2021-11-23 | Add accessibility packages to installed system if using the on the live ISO ↵ | Dylan M. Taylor | |
(#760) * Add group of accesibility tools * Conditionally extend base packages * Enable it if accessibility in use in guided * Fix circular import | |||
2021-11-23 | Adding a warning when /boot is reasonably too small (#738) | Anton Hvornum | |
* Moved convert_size_to_gb() into disk/helpers.py, Added a Partition().size property meta function. Using the .size value to check if /boot is too small which will raise an exception. The only drawback is that it's done post-formatting. This in order to catch scenarios where formatting isn't used. * Changed /boot warning from 0.15GB to 0.25GB * Changed the wording in the warning when /boot is too small. | |||
2021-11-22 | Rewrite bootloader selection to allow efistub if advanced flag is set | Dylan Taylor | |
2021-11-22 | Make NTFS an advanced option (#753) | Dylan M. Taylor | |
* Make NTFS an advanced option | |||
2021-11-22 | Simplified size definition in dict. (#752) | Anton Hvornum | |
* Simplified size definition in dict. Also changed from MiB to MB and GiB to GB on places where they were used, as BlockDevice().size now returns GB by default, so no math operations needed * Appended the /boot offset to /root when specifying /home start. | |||
2021-11-20 | Merge PR #739 - Added @staticmethod decorators | Anton Hvornum | |
source code improvement | |||
2021-11-20 | Incorrect location usage of AVAILABLE_GFX_DRIVERS | Anton Hvornum | |
#710 | |||
2021-11-19 | source code improvement | Steven Lee | |
2021-11-11 | Removed assumptions that !user and !super-users exists. | Anton Hvornum | |
2021-11-11 | Bad copy paste of code prohibited credentials from being stored. | Anton Hvornum | |
2021-11-11 | Only adding disk encryption to user_credentials.json when supplied. | Anton Hvornum | |
2021-11-09 | Forgot the disk encryption password, also escaped with ! | Anton Hvornum | |
2021-11-09 | Adding in storage of user supplied credentials. This separates credentials ↵ | Anton Hvornum | |
from user_configuration.json into user_credentials.json. As well as the JSON serializer will omit the credentials from the user_configuration.json by detecting ! in the dictionary keys (which is why they are important). UNSAFE_JSON will leave those keys in there, good for storing credentials in a separate file." | |||
2021-11-09 | Revert default automatic hostname in user_config.json, I realized it's ↵ | Anton Hvornum | |
better to use --silent than forcing something in there. Some users might want to get poked on every machine. | |||
2021-11-09 | Automatically fill the hostname in user_config.json | Anton Hvornum | |
2021-11-05 | Fixed broken import from master | Anton Hvornum | |
2021-11-05 | Misspelled variable name | Anton Hvornum | |
2021-11-05 | Merged latest master | Anton Hvornum | |
2021-11-05 | Renamed the ntp function, as it doesn't install/enable ntp any longer. Even ↵ | Anton Hvornum | |
tho it uses the NTP protocol. | |||
2021-11-05 | Merged PR #650 - flake8 fixes and tightening | Anton Hvornum | |
Tighten up flake8 tests used by GitHub Action lint_python | |||
2021-11-05 | Cleaned up all flake8 issues/warnings. Did some code cleaning as well, ↵ | Anton Hvornum | |
mostly how we called things in guided.py but also some SysCommand calls | |||
2021-11-02 | Fix typos | TheEvilSkeleton | |
2021-11-01 | Adding support for swap on zram | Anton Hvornum | |
2021-10-30 | Merge branch 'master' of https://github.com/archlinux/archinstall into ↵ | Anton Hvornum | |
torxed-fix-93 | |||
2021-10-30 | Wrong exposed variable corrected. | Anton Hvornum | |
2021-10-22 | Forgot some imports that didn't show up on a static run without going ↵ | Anton Hvornum | |
through a few of the menu's | |||
2021-09-19 | general: remove all found white-spaces | SecondThundeR | |
Also this change adds new line at the end for some scripts | |||
2021-09-18 | Refactoring and cleaning up a bit | Anton Hvornum | |
I'm making sure that the JSON structure of the user config can get a say in how the subvolumes should be used later on. As well as splitting up where the logic should be to make it easier to maintain. | |||
2021-09-18 | Adding in options for BTRFS subvolumes | Anton Hvornum | |
2021-09-15 | Making sure the drive paths are in the JSON structure, and not the class ↵ | Anton Hvornum | |
object, as it won't work seamlessly to access for instance storage['disk_layouts'][ClassInstance()] if it's not the identical mem copy of the object we're accessing, so strings are better for storage/comparisons. | |||
2021-09-15 | Tweaked the logic for parsing the --harddrives parameter. | Anton Hvornum | |
2021-09-15 | Fixing type issue with conversion to multiple disk logic. | Anton Hvornum | |
2021-09-15 | More error handling and fixed a spelling error. | Anton Hvornum | |
2021-09-15 | Might be redundant, but if the JSON file given to --config contains a list ↵ | Anton Hvornum | |
it will break the .split(), but if --harddrives is given as an argument, then we need to split. So adding a type-check | |||
2021-09-15 | Updating support for --disk_layouts. It now supports file paths as well as ↵ | Anton Hvornum | |
JSON in string format via --disk_layouts=<json> | |||
2021-09-15 | Reverted last change, and improved it. By passing it through load_config and ↵ | Anton Hvornum | |
tweaking the read structure a bit, it worked out better if the accessed values are in archinstall.storage instead. | |||
2021-09-15 | Changed from internal storage to parameter-friendly arguments for ↵ | Anton Hvornum | |
disk_layouts, so we can support JSON for disk layouts on the new logic. | |||
2021-09-12 | Removed legacy need to add_bootloader | Anton Hvornum | |
`add_bootloader` no longer needs to have a harddrive given as a argument. It will (and should) auto-detect what's mounted in the `self.target` (aka mountpoint) of the installation. | |||
2021-09-06 | Merged in master. | Anton Hvornum | |
2021-09-06 | Merge pull request #614 from laxect/patch-1 | Anton Hvornum | |
Fix wrong default in kernels (guide.py) | |||
2021-09-06 | Corrected some minor modifications mentioned in #595 as well as merged in ↵ | Anton Hvornum | |
latest changes from master. For future PR's do create a patch-branch for upstream patches to avoid changes to your local repo. | |||
2021-08-20 | Update guided.py | Yash Tripathi | |
2021-08-20 | added servers key | Yash Tripathi | |
2021-08-18 | Update guided.py | ギャラ | |
Fix wrong default in kernels. | |||
2021-07-18 | changed dry_run to dry-run | Yash Tripathi | |