diff options
author | emaste <emaste@FreeBSD.org> | 2016-01-18 15:30:15 +0000 |
---|---|---|
committer | emaste <emaste@FreeBSD.org> | 2016-01-18 15:30:15 +0000 |
commit | 1be9b7c51aea8fe1c66a7c79feafe4be9416378d (patch) | |
tree | 30066d5af87c49f0558a65f744f4d9d3cd17e76b /sys/boot/efi | |
parent | 357c6ab5c13d151385c6c5e995295fbd4fc2e5aa (diff) | |
download | FreeBSD-src-1be9b7c51aea8fe1c66a7c79feafe4be9416378d.zip FreeBSD-src-1be9b7c51aea8fe1c66a7c79feafe4be9416378d.tar.gz |
MFC r287930: Various small cleanups to EFI loader Makefiles.
Diffstat (limited to 'sys/boot/efi')
-rw-r--r-- | sys/boot/efi/boot1/Makefile | 10 | ||||
-rw-r--r-- | sys/boot/efi/loader/Makefile | 3 |
2 files changed, 6 insertions, 7 deletions
diff --git a/sys/boot/efi/boot1/Makefile b/sys/boot/efi/boot1/Makefile index ddf3147..2c5f375 100644 --- a/sys/boot/efi/boot1/Makefile +++ b/sys/boot/efi/boot1/Makefile @@ -9,7 +9,7 @@ MAN= MK_SSP= no -PROG= loader.sym +PROG= boot1.sym INTERNALPROG= # architecture-specific loader code @@ -38,7 +38,7 @@ LDFLAGS= -Wl,-T${LDSCRIPT} -Wl,-Bsymbolic -shared LDFLAGS+= -Wl,-znocombreloc .endif -${PROG}: ${LDSCRIPT} +DPADD+= ${LDSCRIPT} OBJCOPY?= objcopy OBJDUMP?= objdump @@ -49,19 +49,19 @@ EFI_TARGET= efi-app-x86_64 EFI_TARGET= efi-app-ia32 .endif -boot1.efi: loader.sym +boot1.efi: ${PROG} if [ `${OBJDUMP} -t ${.ALLSRC} | fgrep '*UND*' | wc -l` != 0 ]; then \ ${OBJDUMP} -t ${.ALLSRC} | fgrep '*UND*'; \ exit 1; \ fi ${OBJCOPY} -j .text -j .sdata -j .data \ -j .dynamic -j .dynsym -j .rel.dyn \ - -j .rela.dyn -j .reloc -j .eh_frame -j set_Xcommand_set \ + -j .rela.dyn -j .reloc -j .eh_frame \ --output-target=${EFI_TARGET} ${.ALLSRC} ${.TARGET} boot1.o: ${.CURDIR}/../../common/ufsread.c -# The following inserts out objects into a template FAT file system +# The following inserts our objects into a template FAT file system # created by generate-fat.sh .include "${.CURDIR}/Makefile.fat" diff --git a/sys/boot/efi/loader/Makefile b/sys/boot/efi/loader/Makefile index 8d3fe87..268edce 100644 --- a/sys/boot/efi/loader/Makefile +++ b/sys/boot/efi/loader/Makefile @@ -12,7 +12,6 @@ MK_SSP= no PROG= loader.sym INTERNALPROG= -.PATH: ${.CURDIR}/../../efi/loader # architecture-specific loader code SRCS= autoload.c \ bootinfo.c \ @@ -80,7 +79,7 @@ EFI_TARGET= efi-app-x86_64 EFI_TARGET= efi-app-ia32 .endif -loader.efi: loader.sym +loader.efi: ${PROG} if [ `${OBJDUMP} -t ${.ALLSRC} | fgrep '*UND*' | wc -l` != 0 ]; then \ ${OBJDUMP} -t ${.ALLSRC} | fgrep '*UND*'; \ exit 1; \ |