chiark / gitweb /
boot: efi - remove custom splash support
authorKay Sievers <kay@vrfy.org>
Thu, 26 Feb 2015 18:51:08 +0000 (19:51 +0100)
committerKay Sievers <kay@vrfy.org>
Thu, 26 Feb 2015 18:51:08 +0000 (19:51 +0100)
Makefile.am
src/boot/efi/boot.c
test/test-efi-create-disk.sh

index 74c9a5028cf46df969232d8bd157448aeb9dc8c4..e77a2427c6f424a101d3d2bbe279eda9b544efec 100644 (file)
@@ -2566,14 +2566,12 @@ systemd_boot_headers = \
        src/boot/efi/util.h \
        src/boot/efi/console.h \
        src/boot/efi/graphics.h \
-       src/boot/efi/splash.h \
        src/boot/efi/pefile.h
 
 systemd_boot_sources = \
        src/boot/efi/util.c \
        src/boot/efi/console.c \
        src/boot/efi/graphics.c \
-       src/boot/efi/splash.c \
        src/boot/efi/pefile.c \
        src/boot/efi/boot.c
 
index 0990fb80f9ee8eb0317c7e811697c2ad7c1f9f36..b6ecfa4a6fba14b6b62109f3254cbc4c6e795a82 100644 (file)
@@ -21,7 +21,6 @@
 #include "util.h"
 #include "console.h"
 #include "graphics.h"
-#include "splash.h"
 #include "pefile.h"
 #include "linux.h"
 
@@ -50,7 +49,6 @@ typedef struct {
         enum loader_type type;
         CHAR16 *loader;
         CHAR16 *options;
-        CHAR16 *splash;
         CHAR16 key;
         EFI_STATUS (*call)(VOID);
         BOOLEAN no_autoselect;
@@ -355,7 +353,7 @@ static UINTN entry_lookup_key(Config *config, UINTN start, CHAR16 key) {
         return -1;
 }
 
-static VOID print_status(Config *config, EFI_FILE *root_dir, CHAR16 *loaded_image_path) {
+static VOID print_status(Config *config, CHAR16 *loaded_image_path) {
         UINT64 key;
         UINTN i;
         CHAR16 *s;
@@ -363,9 +361,6 @@ static VOID print_status(Config *config, EFI_FILE *root_dir, CHAR16 *loaded_imag
         UINTN x;
         UINTN y;
         UINTN size;
-        EFI_STATUS err;
-        UINTN color = 0;
-        const EFI_GRAPHICS_OUTPUT_BLT_PIXEL *pixel = NULL;
 
         uefi_call_wrapper(ST->ConOut->SetAttribute, 2, ST->ConOut, EFI_LIGHTGRAY|EFI_BACKGROUND_BLACK);
         uefi_call_wrapper(ST->ConOut->ClearScreen, 1, ST->ConOut);
@@ -437,42 +432,6 @@ static VOID print_status(Config *config, EFI_FILE *root_dir, CHAR16 *loaded_imag
                         break;
 
                 entry = config->entries[i];
-
-                if (entry->splash) {
-                        UINT8 *content = NULL;
-                        INTN len;
-
-                        len = file_read(root_dir, entry->splash, 0, 0, &content);
-                        if (len > 0) {
-                                for (;;) {
-                                        static const EFI_GRAPHICS_OUTPUT_BLT_PIXEL colors[] = {
-                                                { .Red = 0xff, .Green = 0xff, .Blue = 0xff },
-                                                { .Red = 0xc0, .Green = 0xc0, .Blue = 0xc0 },
-                                                { .Red = 0xff, .Green =    0, .Blue =    0 },
-                                                { .Red =    0, .Green = 0xff, .Blue =    0 },
-                                                { .Red =    0, .Green =    0, .Blue = 0xff },
-                                                { .Red =    0, .Green =    0, .Blue =    0 },
-                                        };
-
-                                        err = graphics_splash(content, len, pixel);
-                                        if (EFI_ERROR(err))
-                                                break;
-
-                                        /* 'b' rotates through background colors */
-                                        console_key_read(&key, TRUE);
-                                        if (key != KEYPRESS(0, 0, 'b'))
-                                                break;
-                                        pixel = &colors[color++];
-                                        if (color == ELEMENTSOF(colors))
-                                                color = 0;
-                                }
-                        }
-
-                        FreePool(content);
-                        graphics_mode(FALSE);
-                        uefi_call_wrapper(ST->ConOut->ClearScreen, 1, ST->ConOut);
-                }
-
                 Print(L"config entry:           %d/%d\n", i+1, config->entry_count);
                 if (entry->file)
                         Print(L"file                    '%s'\n", entry->file);
@@ -498,8 +457,6 @@ static VOID print_status(Config *config, EFI_FILE *root_dir, CHAR16 *loaded_imag
                         Print(L"loader                  '%s'\n", entry->loader);
                 if (entry->options)
                         Print(L"options                 '%s'\n", entry->options);
-                if (entry->splash)
-                        Print(L"splash                  '%s'\n", entry->splash);
                 Print(L"auto-select             %s\n", entry->no_autoselect ? L"no" : L"yes");
                 if (entry->call)
                         Print(L"internal call           yes\n");
@@ -511,7 +468,7 @@ static VOID print_status(Config *config, EFI_FILE *root_dir, CHAR16 *loaded_imag
         uefi_call_wrapper(ST->ConOut->ClearScreen, 1, ST->ConOut);
 }
 
-static BOOLEAN menu_run(Config *config, ConfigEntry **chosen_entry, EFI_FILE *root_dir, CHAR16 *loaded_image_path) {
+static BOOLEAN menu_run(Config *config, ConfigEntry **chosen_entry, CHAR16 *loaded_image_path) {
         EFI_STATUS err;
         UINTN visible_max;
         UINTN idx_highlight;
@@ -835,7 +792,7 @@ static BOOLEAN menu_run(Config *config, ConfigEntry **chosen_entry, EFI_FILE *ro
                         break;
 
                 case KEYPRESS(0, 0, 'P'):
-                        print_status(config, root_dir, loaded_image_path);
+                        print_status(config, loaded_image_path);
                         refresh = TRUE;
                         break;
 
@@ -1145,12 +1102,6 @@ static VOID config_entry_add_from_file(Config *config, EFI_HANDLE *device, CHAR1
                         FreePool(new);
                         continue;
                 }
-
-                if (strcmpa((CHAR8 *)"splash", key) == 0) {
-                        FreePool(entry->splash);
-                        entry->splash = stra_to_path(value);
-                        continue;
-                }
         }
 
         if (entry->type == LOADER_UNDEFINED) {
@@ -1900,7 +1851,7 @@ EFI_STATUS efi_main(EFI_HANDLE image, EFI_SYSTEM_TABLE *sys_table) {
                 if (menu) {
                         efivar_set_time_usec(L"LoaderTimeMenuUSec", 0);
                         uefi_call_wrapper(BS->SetWatchdogTimer, 4, 0, 0x10000, 0, NULL);
-                        if (!menu_run(&config, &entry, root_dir, loaded_image_path))
+                        if (!menu_run(&config, &entry, loaded_image_path))
                                 break;
 
                         /* run special entry like "reboot" */
@@ -1908,15 +1859,6 @@ EFI_STATUS efi_main(EFI_HANDLE image, EFI_SYSTEM_TABLE *sys_table) {
                                 entry->call();
                                 continue;
                         }
-                } else if (entry->splash) {
-                        UINT8 *content = NULL;
-                        INTN len;
-
-                        len = file_read(root_dir, entry->splash, 0, 0, &content);
-                        if (len > 0)
-                                graphics_splash(content, len, NULL);
-
-                        FreePool(content);
                 }
 
                 /* export the selected boot entry to the system */
index 62d8439ed9910d074227dd365a692c6ab835defc..56dd09abd73f82f6a6c182e70f9e0c5fac899864 100755 (executable)
@@ -13,7 +13,6 @@ mount ${LOOP}p1 mnt
 
 mkdir -p mnt/EFI/{Boot,systemd}
 cp systemd-bootx64.efi mnt/EFI/Boot/bootx64.efi
-cp test/splash.bmp mnt/
 
 [ -e /boot/shellx64.efi ] && cp /boot/shellx64.efi mnt/
 
@@ -30,7 +29,7 @@ objcopy \
 # install entries
 mkdir -p mnt/loader/entries
 echo -e "timeout 3\n" > mnt/loader/loader.conf
-echo -e "title Test\nefi /test\nsplash /splash.bmp\n" > mnt/loader/entries/test.conf
+echo -e "title Test\nefi /test\n" > mnt/loader/entries/test.conf
 echo -e "title Test2\nlinux /test2\noptions option=yes word number=1000 more\n" > mnt/loader/entries/test2.conf
 echo -e "title Test3\nlinux /test3\n" > mnt/loader/entries/test3.conf
 echo -e "title Test4\nlinux /test4\n" > mnt/loader/entries/test4.conf