diff options
| author | Peter Wemm <peter@FreeBSD.org> | 2002-04-06 03:39:22 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 2002-04-06 03:39:22 +0000 |
| commit | a6d81d83a2800ffa93f04723efee8710d5d9c0d8 (patch) | |
| tree | 98bdf192600ce160cf10a098cdc17744b53e1ff5 /sys/boot | |
| parent | 8e5fd46198209a3572c29588f86171d06a478bd2 (diff) | |
Notes
Diffstat (limited to 'sys/boot')
| -rw-r--r-- | sys/boot/efi/libefi/arch/ia64/ldscript.ia64 | 7 | ||||
| -rw-r--r-- | sys/boot/efi/loader/Makefile | 1 | ||||
| -rw-r--r-- | sys/boot/ia64/efi/Makefile | 1 | ||||
| -rw-r--r-- | sys/boot/ia64/efi/ldscript.ia64 | 7 |
4 files changed, 8 insertions, 8 deletions
diff --git a/sys/boot/efi/libefi/arch/ia64/ldscript.ia64 b/sys/boot/efi/libefi/arch/ia64/ldscript.ia64 index 3d2e4e596636..aa02808b2f84 100644 --- a/sys/boot/efi/libefi/arch/ia64/ldscript.ia64 +++ b/sys/boot/efi/libefi/arch/ia64/ldscript.ia64 @@ -22,9 +22,10 @@ SECTIONS . = ALIGN(4096); .data : { - *(.rodata) - *(.rodata1) - *(.set.*) + *(.rodata*) + __start_set_Xcommand_set = .; + *(set_Xcommand_set) + __stop_set_Xcommand_set = .; *(.ctors) *(.data) *(.data1) diff --git a/sys/boot/efi/loader/Makefile b/sys/boot/efi/loader/Makefile index 9e6200f1d373..61848dfc0e3a 100644 --- a/sys/boot/efi/loader/Makefile +++ b/sys/boot/efi/loader/Makefile @@ -54,7 +54,6 @@ vers.o: ${.CURDIR}/../../common/newvers.sh ${.CURDIR}/version ${BASE}.efi: ${BASE}.sym ${OBJCOPY} -j .text \ - -j set_Xcommand_set \ -j .hash \ -j .data \ -j .sdata \ diff --git a/sys/boot/ia64/efi/Makefile b/sys/boot/ia64/efi/Makefile index 9e6200f1d373..61848dfc0e3a 100644 --- a/sys/boot/ia64/efi/Makefile +++ b/sys/boot/ia64/efi/Makefile @@ -54,7 +54,6 @@ vers.o: ${.CURDIR}/../../common/newvers.sh ${.CURDIR}/version ${BASE}.efi: ${BASE}.sym ${OBJCOPY} -j .text \ - -j set_Xcommand_set \ -j .hash \ -j .data \ -j .sdata \ diff --git a/sys/boot/ia64/efi/ldscript.ia64 b/sys/boot/ia64/efi/ldscript.ia64 index 3d2e4e596636..aa02808b2f84 100644 --- a/sys/boot/ia64/efi/ldscript.ia64 +++ b/sys/boot/ia64/efi/ldscript.ia64 @@ -22,9 +22,10 @@ SECTIONS . = ALIGN(4096); .data : { - *(.rodata) - *(.rodata1) - *(.set.*) + *(.rodata*) + __start_set_Xcommand_set = .; + *(set_Xcommand_set) + __stop_set_Xcommand_set = .; *(.ctors) *(.data) *(.data1) |
