index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-06-13 | Removed old safety logics for partitions. Partitions will now always be ↵ | Anton Hvornum | |
formatted when .format() is called on them. The safety now lay in the code parsing the declerative partition layouts. Also added the encrypt/mount logic for encrypted partitions, which by default will be unencrypted unless a password is specified. | |||
2021-06-13 | Added multi-disk suggested layout. It's sorted on performance, and the first ↵ | Anton Hvornum | |
relevant disk with the closest size to a desired size will be used for root, and the same (exluding the one already used) will be used for /home | |||
2021-06-13 | Working suggested single disk layout, preparing for multiple selections. | Anton Hvornum | |
2021-06-10 | Renamed vfat -> fat32 for the purpose of consistency. Most actions are ↵ | Anton Hvornum | |
referring to fat32, it's only mkfs that has the notion vfat and then -F32 for format 32. And I think vfat confuses more people than it does good, so sticking with fat32 which works better with parted as well. Also added the partitioning logic, started on the mounting logic | |||
2021-06-10 | Added wipe support to layout definitions. Also changed default start ↵ | Anton Hvornum | |
positions of partitions to 1MiB in. | |||
2021-06-10 | Clarify driver recommendations (#572) | Dylan M. Taylor | |
2021-06-10 | Merging in latest changes from master. | Anton Hvornum | |
2021-06-10 | Started working on partitioning logic from declarative layouts. | Anton Hvornum | |
2021-06-10 | Merge pull request #537 from archlinux/torxed-fix-517 | Anton Hvornum | |
Introduces the use of HTTP mirrors additionally | |||
2021-06-06 | Removed the bulk of disk-operations from guided, and will move the logic ↵ | Anton Hvornum | |
into the Filesystem() class instead. | |||
2021-06-06 | Added a json.dumps() helper that wraps JSON cls. Also tweaked the logic for ↵ | Anton Hvornum | |
the size creation so that they don't overlap | |||
2021-06-04 | Merge branch 'master' of github.com:archlinux/archinstall into ↵ | Anton Hvornum | |
torxed-rework-partitioning | |||
2021-06-04 | Merged in changes from master | Anton Hvornum | |
2021-06-02 | Remove line explaining desktop profile | Dylan Taylor | |
2021-06-02 | Add description to profile listing | Dylan Taylor | |
2021-06-01 | Windows fix + Sorting based on list | Anton Hvornum | |
This fix introduces changes so that development can be done (and tested) on other platforms than Linux. This is a convenience fix and shouldn't break anything (simply a few Linux-specific imports that have moved into the functions where they are used). This commit also introduces sorting based on a list of priorities (where the default will be last if not matched). | |||
2021-05-27 | Change ordering of example profiles | Dylan M. Taylor | |
2021-05-27 | made it more clear | nullrequest | |
using Redecorating's suggestion in the discord | |||
2021-05-27 | Make it more clear what the desktop profile does | nullrequest | |
2021-05-24 | Merged in latest changes from master | Anton Hvornum | |
2021-05-22 | Forgot an important import. | Anton Hvornum | |
2021-05-22 | Fixes docstrings. | Anton Hvornum | |
2021-05-22 | Re-worked the select_profile() user interaction. It no longer takes options ↵ | Anton Hvornum | |
as a parameter, instead it sources the profiles available, prints a curated list but allows for any input that is a valid profile. | |||
2021-05-21 | Merging in latest changes from master and resolved conflicts. | Anton Hvornum | |
2021-05-19 | Reworking SysCommand & Moving to localectl for locale related activities | Anton Hvornum | |
* Moving to `localectl` rather than local file manipulation *(both for listing locales and setting them)*. * Swapped `loadkeys` for localectl. * Renamed `main` to `maim` in awesome profile. * Created `archinstall.Boot(<installation>)` which spawns a `systemd-nspawn` container against the installation target. * Exposing systemd.py's internals to archinstall global scope. * Re-worked `SysCommand` completely, it's now a wrapper for `SysCommandWorker` which supports interacting with the process in a different way. `SysCommand` should behave just like the old one, for backwards compatibility reasons. This fixes #68 and #69. * `SysCommand()` now has a `.decode()` function that defaults to `UTF-8`. * Adding back peak_output=True to pacstrap. Co-authored-by: Anton Hvornum <anton.feeds@gmail.com> Co-authored-by: Dylan Taylor <dylan@dylanmtaylor.com> | |||
2021-05-18 | Proofreading: Fix misc. spelling and grammar issues | Dylan Taylor | |
2021-05-15 | Perform refactoring to PEP 8 naming conventions | Dylan Taylor | |
2021-05-15 | Remove some redundant parenthesis | Dylan Taylor | |
2021-05-15 | Fix E712 | Dylan Taylor | |
2021-05-15 | More formatting fixes to satisfy PEP 8 | Dylan Taylor | |
2021-05-15 | f-string fixes | Dylan Taylor | |
2021-05-15 | More formatting fixes | Dylan Taylor | |
2021-05-15 | Many more manual changes | Dylan Taylor | |
2021-05-12 | Merge pull request #422 from arieboven/print_large_list_fix | Anton Hvornum | |
fix error when there are to many options to print and calculation spaces | |||
2021-05-12 | Merge pull request #379 from SecondThundeR/multi-select-update | Anton Hvornum | |
Update generic_multi_select and generic_select | |||
2021-05-11 | Renamed keyboard-language to keyboard-layout to avoid confusion. Added ↵ | Anton Hvornum | |
encryption checks for disk layout selection, if disk encryption password is given - but no partitions were found using encryption, the user will be asked which partitions to encrypt - unless there's only /boot and /<root> then we'll automatically select /<root> because that's what we support for now. | |||
2021-05-11 | Fixed line-ending issue after using generic_multi_select() | Anton Hvornum | |
2021-05-11 | Spelling errors, and filtered the output a bit. | Anton Hvornum | |
2021-05-10 | Tested the workflow, and it works pretty decent. There's some kinks to work ↵ | Anton Hvornum | |
out. Added BlockDevice().size as well. | |||
2021-05-10 | Tested creating partitions and deleting them. Kinda works now. | Anton Hvornum | |
2021-05-10 | Added Partition() properties: sector_size, start, end, boot, partition_type ↵ | Anton Hvornum | |
and a __dump__() function. As well as kept working on the partition logic of guided to have a more traditional workflow of adding/deleting partitions in a guided manner, as well as the ability to mark partitions as encrypted/boot and set target mountpoints. | |||
2021-05-10 | Added a soft-wrapper around parted logic. This logic will guide users ↵ | Anton Hvornum | |
through setting up partitions, if they chose to wipe a drive. We'll avoid doing to much auto-magic, and this is just a start. | |||
2021-05-08 | fix error when to many options and calculation spaces | aboven | |
2021-05-07 | Splitting up partitioning logic some more. | Anton Hvornum | |
2021-05-06 | Add default graphics card driver option | SecondThundeR | |
2021-05-06 | Adding in partition layout structure | Anton Hvornum | |
2021-04-30 | Make the style of the word superuser consistent | Dylan M. Taylor | |
2021-04-30 | Tweak wording for superuser prompt a little bit | Dylan M. Taylor | |
2021-04-30 | Revert disabling default sorting | SecondThundeR | |
This change reverts a previous change that disabled sorting by default in the multi select function, which would be better disabled manually for pre-sorted lists than manually enabling for unsorted lists. Also, comments of the line check have been slightly changed | |||
2021-04-29 | Update `user_interaction.py` | SecondThundeR | |
- Reverted some changes for default options in multi select - Added check for dict and convert from dict to list - Replaced spaces with tabs for certain comment line |