summaryrefslogtreecommitdiffstats
path: root/sys/boot/i386/cdldr
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2000-05-23 12:31:32 +0000
committerjhb <jhb@FreeBSD.org>2000-05-23 12:31:32 +0000
commit29384c9340da62f40600b592c514110024d165aa (patch)
tree6d51ec91d2d381573d1ca1d5ff94c34eb8aa6f58 /sys/boot/i386/cdldr
parentbb04c4fd93f735f81db7fa6471be98f6398905a1 (diff)
downloadFreeBSD-src-29384c9340da62f40600b592c514110024d165aa.zip
FreeBSD-src-29384c9340da62f40600b592c514110024d165aa.tar.gz
Grrr, fix a silly 'movl' -> 'movw' typo in both pxeldr and cdldr. Also,
remove unnecessary cruft from the Makefiles for both.
Diffstat (limited to 'sys/boot/i386/cdldr')
-rw-r--r--sys/boot/i386/cdldr/Makefile3
-rw-r--r--sys/boot/i386/cdldr/cdldr.s2
2 files changed, 1 insertions, 4 deletions
diff --git a/sys/boot/i386/cdldr/Makefile b/sys/boot/i386/cdldr/Makefile
index a67f2a7..f42e1ef 100644
--- a/sys/boot/i386/cdldr/Makefile
+++ b/sys/boot/i386/cdldr/Makefile
@@ -32,9 +32,6 @@ ${LDR}: ${LDR}.o
objcopy -S -O binary ${LDR}.out ${.TARGET}
.endif
-${LDR}.o: ${.CURDIR}/${LDR}.s
- ${AS} ${AFLAGS} -o ${.TARGET} ${.CURDIR}/${LDR}.s
-
CLEANFILES+= ${LDR} ${LDR}.out ${LDR}.o ${BOOT}.tmp
.include <bsd.prog.mk>
diff --git a/sys/boot/i386/cdldr/cdldr.s b/sys/boot/i386/cdldr/cdldr.s
index 625dce9..3d3ca52 100644
--- a/sys/boot/i386/cdldr/cdldr.s
+++ b/sys/boot/i386/cdldr/cdldr.s
@@ -87,7 +87,7 @@ start: cld # string ops inc
#
movw $bootinfo_msg, %si # %ds:(%si) -> boot args message
callw putstr # display the message
- movl $MEM_ARG, %bx # %ds:(%bx) -> boot args
+ movw $MEM_ARG, %bx # %ds:(%bx) -> boot args
movw %bx, %di # %es:(%di) -> boot args
xorl %eax, %eax # zero %eax
movw $(MEM_ARG_SIZE/4), %cx # Size of arguments in 32-bit
OpenPOWER on IntegriCloud