svn commit: r354109 - in stable: 11/sys/conf 12/sys/conf
John Baldwin
jhb at FreeBSD.org
Fri Oct 25 22:17:25 UTC 2019
Author: jhb
Date: Fri Oct 25 22:17:24 2019
New Revision: 354109
URL: https://svnweb.freebsd.org/changeset/base/354109
Log:
MFC 353023: Fix the EMBEDFS_FORMAT helper variable for riscv64.
It was defined with the wrong MACHINE_ARCH previously. This permits
using an MFS image without defining MD_ROOT_SIZE which has various
benefits (one being that the build is able to treat the MFS image as
a dependency and properly re-link the kernel with the new image when
building with NO_CLEAN).
Modified:
stable/12/sys/conf/kern.pre.mk
Directory Properties:
stable/12/ (props changed)
Changes in other areas also in this revision:
Modified:
stable/11/sys/conf/kern.pre.mk
Directory Properties:
stable/11/ (props changed)
Modified: stable/12/sys/conf/kern.pre.mk
==============================================================================
--- stable/12/sys/conf/kern.pre.mk Fri Oct 25 22:15:20 2019 (r354108)
+++ stable/12/sys/conf/kern.pre.mk Fri Oct 25 22:17:24 2019 (r354109)
@@ -288,7 +288,7 @@ EMBEDFS_FORMAT.mips?= elf32-tradbigmips
EMBEDFS_FORMAT.mipsel?= elf32-tradlittlemips
EMBEDFS_FORMAT.mips64?= elf64-tradbigmips
EMBEDFS_FORMAT.mips64el?= elf64-tradlittlemips
-EMBEDFS_FORMAT.riscv?= elf64-littleriscv
+EMBEDFS_FORMAT.riscv64?= elf64-littleriscv
.endif
.endif
More information about the svn-src-stable
mailing list