From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bin Meng Date: Tue, 12 Jun 2018 21:07:16 +0800 Subject: [U-Boot] [PATCH 03/18] x86: efi: app: Fix broken EFI application In-Reply-To: References: <1528637118-32739-1-git-send-email-bmeng.cn@gmail.com> <1528637118-32739-4-git-send-email-bmeng.cn@gmail.com> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Mon, Jun 11, 2018 at 10:53 PM, Simon Glass wrote: > On 10 June 2018 at 05:25, Bin Meng wrote: >> The EFI application does not boot currently. It's due to the call >> to syscon_get_by_driver_data() in cpu_init_r() maps to nowhere as >> CONFIG_SYSCON is not included in the configuration. >> >> EFI application is built as a shared library, so GCC won't complain >> during the build process if some symbols are not found. GCC will >> simply put these symbols into the .plt section and expect dynamic >> loader to fix these up. >> >> While we are here, remove some commands and drivers that are not >> needed at present. >> >> Signed-off-by: Bin Meng >> --- >> >> configs/efi-x86_defconfig | 8 ++------ >> 1 file changed, 2 insertions(+), 6 deletions(-) >> > > Reviewed-by: Simon Glass applied to u-boot-x86, thanks!