aboutsummaryrefslogtreecommitdiff
path: root/stand
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2018-11-26 19:29:18 +0000
committerEd Maste <emaste@FreeBSD.org>2018-11-26 19:29:18 +0000
commit4f7c9c3e4e50307f1b2177b98709a79c184f9028 (patch)
tree367420830cb0924b09ccdb03f462838bebe7b809 /stand
parente5b8bced3ffa27fa4af648f0dd890c017a1220ad (diff)
downloadsrc-4f7c9c3e4e50307f1b2177b98709a79c184f9028.tar.gz
src-4f7c9c3e4e50307f1b2177b98709a79c184f9028.zip
stand/i386/libi386: rename .s file to .S to use Clang IAS
As part of the migration away from obsolete binutils we want to retire GNU as. Most assembly files used on amd64 have a .S extension and are assembled with Clang's Integrated Assembler (IAS); rename pxetram.s to .S to use IAS as well. The generated .text is identical (the entire .o file is not, as Clang adds debug info.) PR: 205250, 233094 Sponsored by: The FreeBSD Foundation
Notes
Notes: svn path=/head/; revision=340991
Diffstat (limited to 'stand')
-rw-r--r--stand/i386/libi386/Makefile2
-rw-r--r--stand/i386/libi386/pxetramp.S (renamed from stand/i386/libi386/pxetramp.s)0
2 files changed, 1 insertions, 1 deletions
diff --git a/stand/i386/libi386/Makefile b/stand/i386/libi386/Makefile
index f92558edae3a..e93ce99b77c7 100644
--- a/stand/i386/libi386/Makefile
+++ b/stand/i386/libi386/Makefile
@@ -8,7 +8,7 @@ SRCS= biosacpi.c bioscd.c biosdisk.c biosmem.c biospnp.c \
biospci.c biossmap.c bootinfo.c bootinfo32.c bootinfo64.c \
comconsole.c devicename.c elf32_freebsd.c \
elf64_freebsd.c multiboot.c multiboot_tramp.S relocater_tramp.S \
- i386_copy.c i386_module.c nullconsole.c pxe.c pxetramp.s \
+ i386_copy.c i386_module.c nullconsole.c pxe.c pxetramp.S \
smbios.c time.c vidconsole.c amd64_tramp.S spinconsole.c
.PATH: ${ZFSSRC}
SRCS+= devicename_stubs.c
diff --git a/stand/i386/libi386/pxetramp.s b/stand/i386/libi386/pxetramp.S
index dcf1441aeb24..dcf1441aeb24 100644
--- a/stand/i386/libi386/pxetramp.s
+++ b/stand/i386/libi386/pxetramp.S