efi_loader: move efi_init_obj_list() to a new efi_setup.c
authorAKASHI Takahiro <takahiro.akashi@linaro.org>
Sun, 30 Dec 2018 14:16:55 +0000 (15:16 +0100)
committerAlexander Graf <agraf@suse.de>
Wed, 13 Feb 2019 08:40:05 +0000 (09:40 +0100)
commit056b45bc50c11a57363b7b958297f13506a2508b
tree17ee7a6ca4efd809bbabc7fc162a5f4479845e26
parent4f3cb4d578f6848b0c00d3badbe69e1da805760b
efi_loader: move efi_init_obj_list() to a new efi_setup.c

The function, efi_init_obj_list(), can be shared in different pseudo efi
applications, like bootefi/bootmgr as well as my efishell. Moreover, it
will be utilized to extend efi initialization, for example, my "removable
disk support" patch and "capsule-on-disk support" patch in the future.

So with this patch, it will be moved to a new file, efi_setup.c, under
lib/efi_loader and exported, making no changes in functionality.

Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org>
Remove lines deactivated by #if 1 #else
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
cmd/bootefi.c
include/efi_loader.h
lib/efi_loader/Makefile
lib/efi_loader/efi_setup.c [new file with mode: 0644]