index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-02-07 | Reworked fault handling a bit | Anton Hvornum | |
2021-02-07 | Added error handling for BlockDevice() that was given no information. | Anton Hvornum | |
2021-02-07 | Corrected two variables. | Anton Hvornum | |
2021-02-07 | Added error handling for get_mount_info() | Anton Hvornum | |
2021-02-07 | Added a default no-info value to BlockDevice() | Anton Hvornum | |
2021-02-07 | Moved the output of the current fileformat structure in guided, as well as ↵ | Anton Hvornum | |
added an option to supress the log message from format() in order to hide (for users) the some what confusing formating of /dev/null. | |||
2021-02-07 | Added a check in guided to make it more visible that we check for filesystem ↵ | Anton Hvornum | |
supportation. | |||
2021-02-07 | Added correct exception handling to the pre-format check. | Anton Hvornum | |
2021-02-07 | Fixed correct variable usage for path when formatting, enabling temporary ↵ | Anton Hvornum | |
override. | |||
2021-02-07 | Renamed fat32 to vfat to work more seamlessly with findmnt and other tools ↵ | Anton Hvornum | |
that report fat32 as vfat | |||
2021-02-07 | Quotation issue | Anton Hvornum | |
2021-02-07 | Added an early check for filesystem compatability. Since we need to handle ↵ | Anton Hvornum | |
unique packages etc for certain filesystem formats. This early check can be caught and ignored if the programmer/user wants to override the check and continue anyway. But the default should be to stop all execution to not install a half-working system. | |||
2021-02-07 | Added some more failsafe's to the Partition() object. | Anton Hvornum | |
2021-02-07 | Yielding actual partitions and not just the partition number :) | Anton Hvornum | |
2021-02-07 | Made BlockDevices() iterable, iterting over each partition | Anton Hvornum | |
2021-02-07 | Added partition info on Partition() creation. This will help detect ↵ | Anton Hvornum | |
potential mountpoints as well as filesystem types if any | |||
2021-02-07 | Added the ability to check if a harddrive has any mountpoint related to a ↵ | Anton Hvornum | |
given parameter. | |||
2021-02-07 | Created has_partitions() on BlockDevice's | Anton Hvornum | |
2021-01-26 | Merge pull request #90 from Reiddragon/master | Anton Hvornum | |
Added basic F2FS support | |||
2021-01-24 | Trying to centralize the configuration for logging. Phasing out some ↵ | Anton Hvornum | |
parameters which also affects the current ability to create multiple log files for multiple runs. This will be re-introduced when logging is made into a class object in a later version | |||
2021-01-22 | Added basic F2FS support | Reid | |
2021-01-22 | fixed tabs and spaces problem | advaithm | |
2021-01-22 | xfs as partition option | advaithm | |
2021-01-21 | Fixes #88 - ext4 paritions incorrectly labeled | Anton Hvornum | |
2020-12-07 | Potential solution for #67 | Anton Hvornum | |
It's a 0.025 second sleep waiting for the partition to pop up in partprobe. Also added a grace period of 10 seconds for that to occur. Otherwise we'll throw an exception since something most likely broke down. (Note here: Older drives, say 6200 RPM spin disks, might take a few seconds to come online. Have no such hardware to test with, but worth testing) | |||
2020-12-07 | Final verification of issue | Anton Hvornum | |
2020-12-07 | Removed debugging | Anton Hvornum | |
2020-12-07 | Tweaked debugging a bit | Anton Hvornum | |
2020-12-07 | Update disk.py | Anton Hvornum | |
2020-12-07 | Removing one debug step to debug deeper. | Anton Hvornum | |
2020-12-07 | Spelling error | Anton Hvornum | |
2020-12-07 | Adding some debugging for #67 | Anton Hvornum | |
2020-12-06 | Fix for last commit | Anton Hvornum | |
2020-12-06 | Mixup with the variable | Anton Hvornum | |
2020-12-06 | selecting disk by id/size should return a BlockDevice() | Anton Hvornum | |
2020-12-06 | Attempting to select drives by size and/or id | Anton Hvornum | |
2020-11-04 | Forgot an import of storage. | Anton Hvornum | |
2020-11-04 | Added multiple log features. | Anton Hvornum | |
* [Reintroduced](https://github.com/Torxed/archinstall/blob/f64a605449f59c677dff39962f1cb46616d893b7/archinstall.py#L57-L71) log levels * Created a global log file definition * Optional support for `python-systemd`'s journald handler. * Optional file output that has a globally configurable definition, that archinstall will honor in `archinstall.storage['logfile']`. | |||
2020-10-19 | Fix some PEP-8 errors. | Varun Madiath | |
2020-10-18 | Forgot an import, as well as made BlockDevice() have less verbose output on ↵ | Anton Hvornum | |
json.dumps. | |||
2020-07-21 | Created a __dump__ function in BlockDevice. Can be used to safely dump the ↵ | Anton Hvornum | |
class into a JSON object. Building a json_encoder which checks if the object hasattr(obj, '__dump__') before calling would be ideal | |||
2020-07-08 | Added a encrypted flag to the Partition() object. So that certain checks can ↵ | Anton Hvornum | |
be done by the Installer() later on, for instance when adding a bootloader. There's also a now which tries to find the parent device to the unlocked encrypted device. | |||
2020-07-08 | Trying to sort out a boot issue | Anton Hvornum | |
2020-07-07 | Added colored output. Also tested non-encrypted installations and added ext4 ↵ | Anton Hvornum | |
support. | |||
2020-07-06 | Reworked final preparations for working with profiles and installing them. | Anton Hvornum | |
2020-07-06 | Converted the lib to a pip supported structure to make packaging easier. ↵ | Anton Hvornum | |
Also tweaked some minor issues and added the AUR function |