index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | Merge pull request #123 from Torxed/torxed-v2.2.3 | Anton Hvornum | |
Reverting .strip() logic and moving the check into the get_password()… | |||
2021-03-29 | Reverting .strip() logic and moving the check into the get_password() function. | Anton Hvornum | |
2021-03-29 | Fix spelling error in filesystem choice | Didr | |
Fixes a simple spelling error when the user is asked to select a filesystem. "Select which filesystem your main partition should use (by number **of** name)" should be **or**. | |||
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 | Added some more useful debug data to the log. | 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-28 | Fixed a path-check issue with Time Zones. | Anton Hvornum | |
2021-03-25 | New feature: Profile() now supports .packages which returns any defined ↵ | Anton Hvornum | |
packages for that specific profile, as well as archinstall.__packages__ contain any packages that Installer() is responsible for. This can be used to quickly gather any required packages and dependencies by archinstall. Not all profiles have it yet, so .packages might return None. | |||
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-24 | Removed vfat as an option for the root partition | Anton Hvornum | |
2021-03-23 | Also setting cwd (bad choice of name) to the workdir if one was specified. ↵ | Anton Hvornum | |
Which makes the trace.log to end up in the workdir as well. | |||
2021-03-23 | Enabling archinstall.sys_command() to get a working directory when ↵ | Anton Hvornum | |
executing. The sys_command() is working pretty well for this very specific need, but this is an attempt to making it a bit more generic. A more general overhaul of the command should be done at some point. | |||
2021-03-23 | Corrected recursion loop in log() calling log() before setting the new path ↵ | Anton Hvornum | |
for the log file on errors. | |||
2021-03-23 | Partially corrects for #116. We still don't detect if we're running as root ↵ | Anton Hvornum | |
(need to investigate if we need to run as root first). But this should at least hot-swap the log-file to the current working directory and place the logfile there. | |||
2021-03-21 | Improved english grammar and dialogues. Some 'questions' were formatted in a ↵ | Anton Hvornum | |
way where the user would enter 'yes' instead of the expected input. For instance, 'Any additional users to install:' which is a question where 'yes' is a appropriate response, but the expected input was the username to be created. Rephrased it to 'Enter a username to create a additional user:' instead for instance. | |||
2021-03-21 | Added a mkinitcpio configuration for non-btrfs volumes but where encryption ↵ | Anton Hvornum | |
is still used. Also added keymap to the HOOKS so that we can get non-us layouts depending on the locale chosen during installation. | |||
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 | Moved some info logs into debug instead to minimize user splash. | Anton Hvornum | |
2021-03-21 | Added some debugging to help identify why archinstall cannot find ↵ | Anton Hvornum | |
unencrypted devices when setting up the boot loader. | |||
2021-03-21 | Cleaned up after some debugging. | Anton Hvornum | |
2021-03-21 | Spelling error on variable. | Anton Hvornum | |
2021-03-21 | Moved the globalization of 'installation' variable. Since Profile() might be ↵ | Anton Hvornum | |
created before the installation instance, we need to move the global variable declaration after installation has begun and there's an installation instance. | |||
2021-03-21 | Storing original namespace of profiles as they were during initation. ↵ | Anton Hvornum | |
Namespaces now get reverted back to the original state just before .install() is called. This ensures any temporary namespace changes made during prep-checks etc doesn't stick around when we try to install. | |||
2021-03-21 | Reverted reset_namespace idea. Didn't turn out as clean as I wanted it to. | Anton Hvornum | |
2021-03-21 | Enabling load_instructions() to set a temporary namespace, and then ↵ | Anton Hvornum | |
reverting it after the instructions are loaded. This is to temporarly override the namespace during import - enabling avoidance of triggering __name__ checks, and at the same time reverting back the namespace automatically to enable .execute() on the script (reusability of classes) | |||
2021-03-21 | Enabling load_instructions() to set a temporary namespace, and then ↵ | Anton Hvornum | |
reverting it after the instructions are loaded. This is to temporarly override the namespace during import - enabling avoidance of triggering __name__ checks, and at the same time reverting back the namespace automatically to enable .execute() on the script (reusability of classes) | |||
2021-03-21 | Debugging tainted namespace on profile modules. | Anton Hvornum | |
2021-03-21 | Debugging tainted namespace on profile modules. | Anton Hvornum | |
2021-03-21 | Debugging tainted namespace on profile modules. | Anton Hvornum | |
2021-03-21 | Debugging tainted namespace on profile modules. | Anton Hvornum | |