- 24 Sep, 2021 14 commits
-
-
Philip Müller authored
-
Philip Müller authored
-
Philip Müller authored
-
demmm authored
-
Adriaan de Groot authored
-
Adriaan de Groot authored
-
Adriaan de Groot authored
-
Adriaan de Groot authored
-
Adriaan de Groot authored
Read, then write, the NM file. Add a note about how we might handle this better. Rename live_user() function to give it a verb (and avoid UnboundLocal when using a variable of the same name).
-
Adriaan de Groot authored
- This function is intended to do whatever it takes to get the live username.
-
Adriaan de Groot authored
[fstab] Improve btrfs mount options
-
Adriaan de Groot authored
[initcpiocfg] add consolefont to hooks
-
librewish authored
-
librewish authored
-
- 23 Sep, 2021 2 commits
-
-
Shrinivas Vishnu Kumbhar authored
-
Shrinivas Vishnu Kumbhar authored
-
- 22 Sep, 2021 3 commits
-
-
Adriaan de Groot authored
This class doesn't really set a pointer -- it is a scoped assignment through a pointer, which **can** set a value on destruction (when it leaves scope). Rename it. While here, extend the API so that it can do an assignment to the underlying object **now**, while also doing a scoped assignment later when it leaves scope. This makes some code a bit easier to read ("in this scope, X is now <v> and then it becomes <v'>")
-
Adriaan de Groot authored
This class was used only once, and is confusing because the assignment happens always, but to the opposite value as what was visible. It can be replaced with other scoped assignment, instead. Removes the tests for it, too.
-
Adriaan de Groot authored
- log the list of search paths once - log the found-language as if from Python - warn always if none are found
-
- 21 Sep, 2021 21 commits
-
-
Calamares CI authored
-
Calamares CI authored
-
Adriaan de Groot authored
FIXES #1603
-
Adriaan de Groot authored
- when an emergency strikes, log the modules that are skipped with a Once, but if an emergency module runs, refresh that Once so that the function header is printed again -- to distinguish JobQueue debugging from the logging from the emergency module.
-
Adriaan de Groot authored
-
Adriaan de Groot authored
-
Adriaan de Groot authored
-
Adriaan de Groot authored
-
Adriaan de Groot authored
-
Adriaan de Groot authored
-
Adriaan de Groot authored
This is in response to the issue, and cleans up a bunch of code, but does not actually resolve the issue (because I can't quite tell what the issue should be). SEE #1788
-
Adriaan de Groot authored
-
Adriaan de Groot authored
- iterate over the lines of the source file, rather than over indexes, and make clear that the hooks, modules and files lines are replaced, rather than merged. - this calls write() more often, but it's only a few lines
-
Adriaan de Groot authored
- Read the host /etc/mkinitcpio.cfg in one function rather than hiding it inside the writer
-
Adriaan de Groot authored
- don't chain directly from modify_mkinitcpio_conf() to the function that writes the file write_mkinitcpio_lines(); split into "figure out what needs to be written" and calling that writing-function, so that we can test / check / log if needed between the two.
-
Adriaan de Groot authored
- put the system-information and -detection functions at top and the "do the actual work" things below - don't mix the boolean do-we-use-this flags with the lists of files and modules which are the important parts of modify_mkinitcpio_conf
-
Adriaan de Groot authored
(as previous) Use False/True rather than ""/"yes" for keeping track of does-the-system-use-lvm2.
-
Adriaan de Groot authored
Having "" and "yes" as values is a bit shell-script-ish. Use a regular boolean value instead; simplify code while we're at it.
-
-
Adriaan de Groot authored
The code is still over-wrought, but the API for cpuinfo now exposes the interesting thing (is it Intel?) in a useful -- more readable -- way.
-
Adriaan de Groot authored
FIXES #1786
-