git: 9200b41546cb - stable/12 - loader: crc32 is provided by libsa

From: Kyle Evans <kevans_at_FreeBSD.org>
Date: Fri, 08 Oct 2021 07:37:31 UTC
The branch stable/12 has been updated by kevans:

URL: https://cgit.FreeBSD.org/src/commit/?id=9200b41546cb955cee30589cacc4c89007c50806

commit 9200b41546cb955cee30589cacc4c89007c50806
Author:     Toomas Soome <tsoome@FreeBSD.org>
AuthorDate: 2020-03-04 18:38:09 +0000
Commit:     Kyle Evans <kevans@FreeBSD.org>
CommitDate: 2021-10-08 07:37:13 +0000

    loader: crc32 is provided by libsa
    
    Seems like leftover from moving crc32.c to libsa.
    
    (cherry picked from commit ca251958058fc5e7c9ed020655ed7e737043ba77)
---
 stand/i386/gptboot/Makefile | 4 ++--
 stand/i386/isoboot/Makefile | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/stand/i386/gptboot/Makefile b/stand/i386/gptboot/Makefile
index ea656da635ab..ee8f4797f3d6 100644
--- a/stand/i386/gptboot/Makefile
+++ b/stand/i386/gptboot/Makefile
@@ -54,13 +54,13 @@ gptldr.bin: gptldr.out
 gptldr.out: gptldr.o
 	${LD} ${LD_FLAGS} -e start --defsym ORG=${ORG1} -T ${LDSCRIPT} -o ${.TARGET} gptldr.o
 
-CLEANFILES+=	gptboot.bin gptboot.out gptboot.o sio.o crc32.o drv.o \
+CLEANFILES+=	gptboot.bin gptboot.out gptboot.o sio.o drv.o \
 		cons.o ${OPENCRYPTO_XTS}
 
 gptboot.bin: gptboot.out
 	${OBJCOPY} -S -O binary gptboot.out ${.TARGET}
 
-gptboot.out: ${BTXCRT} gptboot.o sio.o crc32.o drv.o cons.o ${OPENCRYPTO_XTS}
+gptboot.out: ${BTXCRT} gptboot.o sio.o drv.o cons.o ${OPENCRYPTO_XTS}
 	${LD} ${LD_FLAGS} --defsym ORG=${ORG2} -T ${LDSCRIPT} -o ${.TARGET} ${.ALLSRC} ${LIBSA32}
 
 .include <bsd.prog.mk>
diff --git a/stand/i386/isoboot/Makefile b/stand/i386/isoboot/Makefile
index 597958065090..9fcd1f357231 100644
--- a/stand/i386/isoboot/Makefile
+++ b/stand/i386/isoboot/Makefile
@@ -55,13 +55,13 @@ gptldr.bin: gptldr.out
 gptldr.out: gptldr.o
 	${LD} ${LD_FLAGS} -e start --defsym ORG=${ORG1} -T ${LDSCRIPT} -o ${.TARGET} gptldr.o
 
-CLEANFILES+=	isoboot.bin isoboot.out isoboot.o sio.o crc32.o drv.o \
+CLEANFILES+=	isoboot.bin isoboot.out isoboot.o sio.o drv.o \
 		cons.o ${OPENCRYPTO_XTS}
 
 isoboot.bin: isoboot.out
 	${OBJCOPY} -S -O binary isoboot.out ${.TARGET}
 
-isoboot.out: ${BTXCRT} isoboot.o sio.o crc32.o drv.o cons.o ${OPENCRYPTO_XTS}
+isoboot.out: ${BTXCRT} isoboot.o sio.o drv.o cons.o ${OPENCRYPTO_XTS}
 	${LD} ${LD_FLAGS} --defsym ORG=${ORG2} -T ${LDSCRIPT} -o ${.TARGET} ${.ALLSRC} ${LIBSA32}
 
 .include <bsd.prog.mk>