From 81eb68f4ffab6403f178e0eb2868d6bf53aee792 Mon Sep 17 00:00:00 2001 From: California Sullivan Date: Thu, 22 Mar 2018 09:16:16 -0700 Subject: efilinux: remove The code hasn't been touched for over 4 years. Its also unlikely to have been used much if at all considering our previous lack of EFI boot partition support. Signed-off-by: California Sullivan --- .../efilinux/0002-initialize-char-pointers.patch | 33 ---------------------- 1 file changed, 33 deletions(-) delete mode 100644 recipes-bsp/efilinux/efilinux/0002-initialize-char-pointers.patch (limited to 'recipes-bsp/efilinux/efilinux/0002-initialize-char-pointers.patch') diff --git a/recipes-bsp/efilinux/efilinux/0002-initialize-char-pointers.patch b/recipes-bsp/efilinux/efilinux/0002-initialize-char-pointers.patch deleted file mode 100644 index 127c187a..00000000 --- a/recipes-bsp/efilinux/efilinux/0002-initialize-char-pointers.patch +++ /dev/null @@ -1,33 +0,0 @@ -From 49053e4ff0f3550d019cdad8a93677c18fc69791 Mon Sep 17 00:00:00 2001 -From: Khem Raj -Date: Sat, 12 Aug 2017 10:35:09 -0700 -Subject: [PATCH 2/2] initialize char pointers - -Clang complains about using them without initializing - -Signed-off-by: Khem Raj ---- -Upstream-Status: Pending - - entry.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/entry.c b/entry.c -index 0aa6cdd..23ba51e 100644 ---- a/entry.c -+++ b/entry.c -@@ -402,9 +402,9 @@ efi_main(EFI_HANDLE image, EFI_SYSTEM_TABLE *_table) - WCHAR *error_buf; - EFI_STATUS err; - EFI_LOADED_IMAGE *info; -- CHAR16 *name, *options; -+ CHAR16 *name = NULL, *options; - UINT32 options_size; -- char *cmdline; -+ char *cmdline = NULL; - - InitializeLib(image, _table); - sys_table = _table; --- -2.14.1 - -- cgit v1.2.3-54-g00ecf