Module Name: src
Committed By: rin
Date: Wed Jul 26 03:41:57 UTC 2023
Modified Files:
src/sys/arch/alpha/conf: Makefile.alpha
src/sys/arch/mips/conf: Makefile.mips
src/sys/arch/riscv/conf: Makefile.riscv
Log Message:
Use OBJCOPY_STRIPFLAGS instead of STRIPFLAGS.
To generate a diff of this commit:
cvs rdiff -u -r1.87 -r1.88 src/sys/arch/alpha/conf/Makefile.alpha
cvs rdiff -u -r1.72 -r1.73 src/sys/arch/mips/conf/Makefile.mips
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/riscv/conf/Makefile.riscv
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/alpha/conf/Makefile.alpha
diff -u src/sys/arch/alpha/conf/Makefile.alpha:1.87 src/sys/arch/alpha/conf/Makefile.alpha:1.88
--- src/sys/arch/alpha/conf/Makefile.alpha:1.87 Wed May 5 15:39:39 2021
+++ src/sys/arch/alpha/conf/Makefile.alpha Wed Jul 26 03:41:57 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.alpha,v 1.87 2021/05/05 15:39:39 thorpej Exp $
+# $NetBSD: Makefile.alpha,v 1.88 2023/07/26 03:41:57 rin Exp $
# Makefile for NetBSD
#
@@ -65,7 +65,7 @@ TEXTADDR?= fffffc0000a00000
ENTRYPOINT= __transfer
KERNLDSCRIPT?= ${ALPHA}/conf/kern.ldscript
EXTRA_LINKFLAGS= -G 4
-STRIPFLAGS= -g -X
+OBJCOPY_STRIPFLAGS= -g -X
##
## (6) port specific target dependencies
Index: src/sys/arch/mips/conf/Makefile.mips
diff -u src/sys/arch/mips/conf/Makefile.mips:1.72 src/sys/arch/mips/conf/Makefile.mips:1.73
--- src/sys/arch/mips/conf/Makefile.mips:1.72 Mon Apr 26 00:28:01 2021
+++ src/sys/arch/mips/conf/Makefile.mips Wed Jul 26 03:41:57 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.mips,v 1.72 2021/04/26 00:28:01 christos Exp $
+# $NetBSD: Makefile.mips,v 1.73 2023/07/26 03:41:57 rin Exp $
# Makefile for NetBSD
#
@@ -105,7 +105,7 @@ KERNLDSCRIPT?= ${MIPS}/conf/kern.ldscri
# some mips ports specify a "magic" format
EXTRA_LINKFLAGS= ${GP} ${LDOPTS}
LINKFLAGS_NORMAL= -X
-STRIPFLAGS= -g -X
+OBJCOPY_STRIPFLAGS= -g -X
##
## (6) port specific target dependencies
Index: src/sys/arch/riscv/conf/Makefile.riscv
diff -u src/sys/arch/riscv/conf/Makefile.riscv:1.9 src/sys/arch/riscv/conf/Makefile.riscv:1.10
--- src/sys/arch/riscv/conf/Makefile.riscv:1.9 Sun May 7 12:41:48 2023
+++ src/sys/arch/riscv/conf/Makefile.riscv Wed Jul 26 03:41:57 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.riscv,v 1.9 2023/05/07 12:41:48 skrll Exp $
+# $NetBSD: Makefile.riscv,v 1.10 2023/07/26 03:41:57 rin Exp $
# Makefile for NetBSD
#
@@ -67,7 +67,7 @@ TEXTADDR?= 0x80200000
KERNLDSCRIPT?= ${RISCV}/conf/kern.ldscript
EXTRA_LINKFLAGS= ${LDOPTS} --relax
LINKFLAGS_NORMAL= -X
-STRIPFLAGS= -g -X
+OBJCOPY_STRIPFLAGS= -g -X
# Set the physical load address (aka LMA) to the address that OpenSBI's
# fw_jump jumps to. This allows us to load the kernel with the -kernel flag