diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2017-09-05 01:19:37 (GMT) |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2017-09-18 21:53:56 (GMT) |
commit | 5e44489bc19dad344e0019f4a6926aa5f29b4456 (patch) | |
tree | 1cc096ca1990277c716b0285a4717683e695be31 /scripts/Makefile.lib | |
parent | d6507e6fd9e0a6f1a8dd28c18cd320c1f861269e (diff) | |
download | u-boot-5e44489bc19dad344e0019f4a6926aa5f29b4456.tar.xz |
efi_loader: rename __efi_hello_world_*
In scripts/Makefile.lib we build section including helloworld.efi.
This allows to load the EFI binary with command 'bootefi hello'.
scripts/Makefile.lib contains explicit references to strings
containing helloworld and hello_world. This makes it impossible
to generalize the coding to accomodate additional built in
EFI binaries.
Let us rename the variables __efi_hello_world_* to
__efi_helloworld_*.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'scripts/Makefile.lib')
-rw-r--r-- | scripts/Makefile.lib | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index 7bf6ef1..320e6c0 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib @@ -367,11 +367,11 @@ cmd_S_efi= \ ( \ echo '.section .rodata.efi.init,"a"'; \ echo '.balign 16'; \ - echo '.global __efi_hello_world_begin'; \ - echo '__efi_hello_world_begin:'; \ + echo '.global __efi_helloworld_begin'; \ + echo '__efi_helloworld_begin:'; \ echo '.incbin "$<" '; \ - echo '__efi_hello_world_end:'; \ - echo '.global __efi_hello_world_end'; \ + echo '__efi_helloworld_end:'; \ + echo '.global __efi_helloworld_end'; \ echo '.balign 16'; \ ) > $@ |