summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2015-07-07obsoletedHEADmasterKay Sievers29-8096/+1
2015-03-12efi: rename config option to "editor" and read a booleanKay Sievers3-11/+37
2015-03-12Add 'editing disable' loader option to globally disallow option editing.Brandon Carpenter1-1/+11
2015-02-26build-sys: fix gcc v5 hickupKay Sievers1-0/+1
2015-02-05build-sys: I can't type.Kay Sievers1-1/+1
2015-02-03build-sys: fix typoKay Sievers1-1/+1
spotted by Kalrish Bäakjen <kalrish.baakjen@gmail.com>
2015-02-01End the cmdline string with a 0Harald Hoyer3-7/+14
The cmdline string was passed to the kernel without an ending 0, so it would read past the cmdline memory.
2015-02-01test/test-create-disk.sh: fixup the cmdlineHarald Hoyer1-1/+1
remove the line break and add some dracut specific options to get a shell in the initrd.
2015-02-01Makefile.am:qemu: give the qemu machine more memoryHarald Hoyer1-1/+1
If testing with large initramfs files, the kernel fails to decompress these, because it runs out of memory.
2015-01-30version 4848Kay Sievers1-1/+1
2015-01-30fix 32 bit buildKay Sievers1-3/+3
2015-01-30version 4747Kay Sievers1-1/+1
2015-01-30build-sys: fix typoKay Sievers1-1/+1
2015-01-30version 4646Kay Sievers1-1/+1
2015-01-30stub: rename empty binary to linuxx64.efi.stubKay Sievers2-2/+2
2015-01-26stub: do not assumr secure boot on systems without support for itKay Sievers1-3/+3
2015-01-25stub: accept custom kernel command line if not running in secure boot modeKay Sievers4-13/+51
2015-01-25stub: execute EFI image with an embedded kernel, initrd, cmdline sectionsKay Sievers10-41/+303
Locate the following embedded PE sections .linux - bzImage .inird - initrd cpio archive .cmdline - kernel command line and hand over control to the bzImage.
2015-01-23find Linux kernels with an embedded os-release fileKay Sievers9-39/+349
Look for EFI executables at /EFI/Linux/*.efi, and add them to the menu if the PE file contains an .osrel section which carries an os-release file with the expected information.
2015-01-08force screen clear when entering the menuKay Sievers1-0/+9
2014-12-25gummiboot: freeing the wrong variableDavid Härdeman1-1/+1
The error path in efivar_get free's what would have been the copy of the string if the strcpy had succeeded, which it did not (or we wouldn't be in the error path). Signed-off-by: David Härdeman <david@hardeman.nu>
2014-05-15build-sys: build gummiboot executable only if HAVE_BLKIDKang Hu1-0/+2
src/setup/setup.c depends on blkid library. so build gummiboot binary only if blkid library is available.
2014-05-14version 4545Kay Sievers1-1/+1
2014-04-26compare 'architecture' value as ASCII stringKay Sievers1-11/+2
2014-04-26Add new config file keyword 'architecture' to specify the architecture of ↵Keshav Amburay1-2/+21
the EFI image
2014-03-29version 4444Kay Sievers1-1/+1
2014-03-29gummiboot: build-sys: don't copy .eh_frame into final exeFlorian Albrechtskirchinger1-1/+1
Apparently some firmware implementations[1] won't run executables containing an .eh_frame section, failing instead with "Error reported: Unsupported" on the shell. There's also no obvious need for it, so don't copy it. [1] e.g., the one used on the ASRock C2750D4I
2014-01-31always set a background before drawing the splashKay Sievers2-11/+23
Several firmware implementations do no clear the screen and we just draw over the existing screen content.
2014-01-24version 4343Kay Sievers1-1/+1
2014-01-15'P' clear screen after splashKay Sievers1-0/+1
2014-01-15graphics: Do not require nonstandard console control protocolJoonas Lahtinen1-2/+4
Console Control Protocol is a nonstandard UEFI interface and lack of it shall not be treated as an error. Signed-off-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
2014-01-02Typo in gummiboot man pageChris1-1/+1
2013-12-24graphics: splash - correct rounding in alpha blendingTerje Gundersen1-2/+2
"(X >> 8)" always rounds down, but "(X + 0x80) >> 8)" rounds to the nearest integer.
2013-12-22cosmetics for 'P' splash loopKay Sievers1-18/+18
2013-12-22disable cursor when switching text/graphics modeKay Sievers2-11/+14
2013-12-21version 4242Kay Sievers1-1/+1
2013-12-21build-sys: add headers as dependencyKay Sievers1-2/+1
2013-12-21build-sys: fix dist(check)Kay Sievers1-1/+7
2013-12-21version 4141Tom Gundersen1-1/+1
2013-12-21support "background" color settingKay Sievers1-5/+41
2013-12-21remove +1 from alpha calculationKay Sievers1-2/+1
2013-12-21'P' support cycling to backgroud colors for debuggingKay Sievers4-14/+49
2013-12-21graphics - support alpha channelTom Gundersen1-4/+35
First get the contents of the screen we want to blit to, then blend with our picture before blitting back.
2013-12-20'P' disable cursor when coming back from graphics modeKay Sievers1-3/+4
2013-12-20update test splash picture to carry an aplha channelKay Sievers1-0/+0
2013-12-20add original gummiboot.svg from Sirko KemterKay Sievers1-0/+1327
2013-12-19graphics: factor out BMP header parsingTom Gundersen1-27/+36
2013-12-18graphics: support smaller than 2^n colormapsTom Gundersen1-10/+14
2013-12-17graphics: simplify 16bpp calculationTom Gundersen1-3/+5
2013-12-17graphics: add support for XRGB{16,32}Tom Gundersen1-2/+26
We now support all the formats GIMP can produce except for RGB16, though any alpha-channels are silently ignored.