Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-04-11 | boot/util: add ticks_read() stub | Koen Kooi | |
2015-04-11 | boot/util: use x86 ASM only on x86 platforms. | Koen Kooi | |
2015-04-08 | remove duplicated includes | Ronny Chevalier | |
2015-04-06 | util: rework rm_rf() logic | Lennart Poettering | |
- Move to its own file rm-rf.c - Change parameters into a single flags parameter - Remove "honour sticky" logic, it's unused these days | |||
2015-03-19 | bootctl: drop redundant parse_argv() | David Herrmann | |
We already call parse_argv() from main(), don't call it here again. | |||
2015-03-13 | efi: widen operand to avoid overflow | Zbigniew Jędrzejewski-Szmek | |
CID #1287141. | |||
2015-03-11 | boot: efi - add config option to disable the command line editor | Kay Sievers | |
2015-03-09 | boot/efi: do not assign variable twice | Zbigniew Jędrzejewski-Szmek | |
If the highlighted line did not move outside of the visible region, it should not be necessary to update idx_last. CID #1287137, #1287138. | |||
2015-03-01 | boot: efi - ignore .conf snippets starting with "auto-" | Kay Sievers | |
2015-03-01 | boot: efi - remove a couple of Loader* variables | Kay Sievers | |
2015-02-27 | bootctl: avoid NULL pointer dereference | Zbigniew Jędrzejewski-Szmek | |
2015-02-27 | boot: efi - fix missing include | Marcel Holtmann | |
src/boot/efi/splash.c:312:9: warning: implicit declaration of function ‘graphics_mode’ [-Wimplicit-function-declaration] err = graphics_mode(TRUE); ^ | |||
2015-02-26 | boot: efi - remove custom splash support | Kay Sievers | |
2015-02-26 | boot: efi - split graphics and splash handling | Kay Sievers | |
2015-02-26 | boot: efi - support embedded splash image | Kay Sievers | |
2015-02-26 | boot: efi - print generic error message if we fail to execute an image | Kay Sievers | |
2015-02-26 | boot: efi - remove default boot splash handling | Kay Sievers | |
2015-02-25 | bootctl: check that partition uuid is valid | Thomas Hindoe Paaboel Andersen | |
It probably is but check anyway to make coverity happy. CID#1271354 | |||
2015-02-25 | bootctl: fix mem leaks | Thomas Hindoe Paaboel Andersen | |
CID#1271347/1271348 | |||
2015-02-23 | remove unused includes | Thomas Hindoe Paaboel Andersen | |
This patch removes includes that are not used. The removals were found with include-what-you-use which checks if any of the symbols from a header is in use. | |||
2015-02-20 | build-sys: update gitignore | Kay Sievers | |
2015-02-18 | systemd-boot: fix alignment of version in table | Thomas Hindoe Paaboel Andersen | |
2015-02-18 | gummiboot/sd-boot/systemd-boot: rename galore | Tom Gundersen | |
What used to be gummiboot, was renamed sd-boot when it was merged into systemd. Let's try to be a bit more consistent with the rest of systemd and rename it again as follows: The EFI bootloader is now called 'systemd-bootx64.efi', and its sources are in 'src/boot/efi/'. The drop-in directory where bootctl will find EFI loaders is now /usr/lib/systemd/boot/efi/. | |||
2015-02-17 | bootctl: add sd-boot support | Kay Sievers | |
2015-02-12 | Add missing includes in header files | Thomas Hindoe Paaboel Andersen | |
This fixes various issues found by globally reordering the include sections of all .c files. | |||
2014-08-03 | Unify parse_argv style | Zbigniew Jędrzejewski-Szmek | |
getopt is usually good at printing out a nice error message when commandline options are invalid. It distinguishes between an unknown option and a known option with a missing arg. It is better to let it do its job and not use opterr=0 unless we actually want to suppress messages. So remove opterr=0 in the few places where it wasn't really useful. When an error in options is encountered, we should not print a lengthy help() and overwhelm the user, when we know precisely what is wrong with the commandline. In addition, since help() prints to stdout, it should not be used except when requested with -h or --help. Also, simplify things here and there. | |||
2014-02-19 | make gcc shut up | Lennart Poettering | |
If -flto is used then gcc will generate a lot more warnings than before, among them a number of use-without-initialization warnings. Most of them without are false positives, but let's make them go away, because it doesn't really matter. | |||
2014-01-31 | use memzero(foo, length); for all memset(foo, 0, length); calls | Greg KH | |
In trying to track down a stupid linker bug, I noticed a bunch of memset() calls that should be using memzero() to make it more "obvious" that the options are correct (i.e. 0 is not the length, but the data to set). So fix up all current calls to memset(foo, 0, length) to memzero(foo, length). | |||
2013-12-31 | boot-efi: Remove superfluous assignment | Stefan Beller | |
2 lines after the changed line we assign err to efi_get_variable(...) unconditionally, so it makes no sense to initialize it to some value. | |||
2013-11-09 | bootctl: remove unused options from getopt_long | Thomas Hindoe Paaboel Andersen | |
2013-11-06 | clients: unify how we invoke getopt_long() | Lennart Poettering | |
Among other things this makes sure we always expose a --version command and show it in the help texts. | |||
2013-11-06 | bootctl: typo fix in help message | Thomas Hindoe Paaboel Andersen | |
2013-09-24 | support acpi firmware performance data (FPDT) | Kay Sievers | |
Prefer firmware-provided performance data over loader-exported ones; if ACPI data is available, always use it, otherwise try to read the loader data. The firmware-provided variables start at the time the first EFI image is executed and end when the operating system exits the boot services; the (loader) time calculated in systemd-analyze increases. | |||
2013-03-29 | bootctl: fix help text | Koen Kooi | |
It currently says 'time settings', change that to 'boot settings'. | |||
2013-03-28 | bootctl: ESP --> Partition | Kay Sievers | |
2013-03-28 | bootctl: Binary: --> File: | Kay Sievers | |
2013-03-27 | bootctl: rename status output header | Kay Sievers | |
2013-03-10 | bootctl: print Options only when found | Kay Sievers | |
2013-03-10 | bootctl: print secure boot flags | Kay Sievers | |
2013-02-17 | bootctl: show "n/a" for empty boot option labels | Kay Sievers | |
2013-02-13 | use streq instead of strcmp | Thomas Hindoe Paaboel Andersen | |
2013-02-13 | bootctl: always show slashes not backslashes | Kay Sievers | |
2013-02-13 | efi: unify BootXXXX reading | Kay Sievers | |
2013-02-13 | boot: add stub Makefile symlink | Lennart Poettering | |
2013-02-13 | efi: various cleanups | Lennart Poettering | |
2013-02-11 | bootctl: print partition uuids as /dev/disk/by-partuuid/... | Kay Sievers | |
2013-02-11 | bootctl: add boot loader and firmware interface tool | Kay Sievers | |