- 20 May, 2021 4 commits
-
-
Anton Midyukov authored
- fix VM_SAVE_TARBALL parameter support - grub: save ang read default menu item (thanks jqt4@, sin@)
-
Anton Midyukov authored
-
Anton Midyukov authored
1. Didn't work before because the variable was not exported. 2. Fixed the logic broken by the introduction of support for saving the selected item on the FAT partition.
-
Anton Midyukov authored
The code is given in accordance with the documentation See-also: commit 2987fa8f
-
- 19 May, 2021 2 commits
-
-
Dmitriy Terekhin authored
If the ISO image has a FAT partition and the image is written to a flash drive, then it is possible to write to this partition of the flash drive. This is necessary, for example, if the user does not want to install the system, but wants to constantly work in LiveCD mode with or without recording sessions. In order for this code to work, you need to make changes to the FAT partition of the image on the flash drive: Add the 1st line to the grub.cfg file: set pfxfat=${prefix} Write a 1kb file grubenv. If grub.cfg contains a line like '^default=id', then the read value is not used.
-
Evgeny Sinelnikov authored
This prepares the ability to write and read the default menu item from the grubenv file. If grub.cfg contains a line like '^default=id', then the read value is not used. Setting the default menu item from the grubenv file will be indented inside the 'if' optator and therefore does not match the '^default' pattern.
-
- 17 May, 2021 20 commits
-
-
Anton Midyukov authored
-
Anton Midyukov authored
- build-vm: Add ability to build .img.xz (thanks sem@) - reports.mk: optimiztion for generate rpm and srpms lists (thanks mike@) - reports.mk: generate targets.svgz instead targets.png - add VM_SAVE_TARBALL parameter - add MKIMAGE_PREFIX parameter - kernel: optimization use/kernel/initrd-setup - set STAGE1_INITRD_BOOTARGS in initrd-propagator - slinux 9.1 - education 9.2
-
Anton Midyukov authored
It is necessary to monitor the state of syslinux in Sisyphus.
-
Andrey Cherepanov authored
-
Andrey Cherepanov authored
-
Andrey Cherepanov authored
-
Andrey Cherepanov authored
-
Andrey Cherepanov authored
-
Andrey Cherepanov authored
-
Andrey Cherepanov authored
-
Andrey Cherepanov authored
-
Andrey Cherepanov authored
-
Andrey Cherepanov authored
-
Andrey Cherepanov authored
-
Andrey Cherepanov authored
education: use use/power/acpi instead of +power because this leads to a forced shutdown [distrtest-3933]
-
Andrey Cherepanov authored
-
Andrey Cherepanov authored
-
Andrey Cherepanov authored
-
Andrey Cherepanov authored
-
Anton Midyukov authored
Previously, you had to specify two parameters MKIMAGE_PREFIX and GLOBAL_PREFIX with the same value - the path to mkimage. And this behavior has not been documented. The GLOBAL_PREFIX variable is defined in mkimage in config.mk and rules.mk.
-
- 14 May, 2021 1 commit
-
-
Anton Midyukov authored
rtc not needed in initrd.
-
- 12 May, 2021 3 commits
-
-
Anton Midyukov authored
-
Anton Midyukov authored
Not needed more. uuid assigned directly in configs.
-
Anton Midyukov authored
-
- 11 May, 2021 2 commits
-
-
Anton Midyukov authored
make-initrd supports adding module directories.
-
Anton Midyukov authored
Since we are now using fuuid, it doesn't depend on mkimage version. But it depends on the propagator version. Needed propagator >= 20210329-alt1 See-also: commit 52e90c26
-
- 10 May, 2021 1 commit
-
-
Anton Midyukov authored
beremiz removed from Sisyphus. See-also: http://git.altlinux.org/tasks/archive/done/_265/271405
-
- 04 May, 2021 1 commit
-
-
Anton Midyukov authored
As new exfat filesystem is merged into linux-5.7 kernel, exfatprogs is created as an official userspace utilities that contain all of the standard utilities for creating and fixing and debugging exfat filesystem in linux system. std-def kernel in Sisyphus 5.10.
-
- 30 Apr, 2021 1 commit
-
-
Anton Midyukov authored
The parameter is used to save the intermediate tarball used to build the virtual machine image.
-
- 29 Apr, 2021 5 commits
-
-
Anton Midyukov authored
SVGZ is more than a hundred times smaller than PNG. a
-
Michael Shigorin authored
Wrote that it's a bashism myself and neglected to specify the proper shell, sigh. This SHELL manipulation could ruin tracing piggybacked onto it within lib/report.mk but it's too late at this stage anyways.
-
Michael Shigorin authored
The first half of both pipes was clearly a copy-pasted initial logfile processing; the file can be of considerable size (e.g. several megabytes) so it might be slightly more efficient and cool (but a bit more arcane) to use bash(1)'s process substitution along with good ol' tee(1) like this: $ echo -e '1\n2\n3' |tee /dev/stderr 2> >(grep 2 >STDERR) |grep 1 >STDOUT $ head STD* ==> STDERR <== 2 ==> STDOUT <== 1
-
Michael Shigorin authored
That "clever hack" with two rev(1) invocations seems pretty stupid to me: too much processes and processing instead of simple prefix removal. One can also have that as ${var##*/} when dealing with a shell variable and avoiding extra forks, BTW.
-
Michael Shigorin authored
..making it fit 80 columns while at that to avoid horizontal spaghetti code.
-