svn commit: r353023 - head/sys/conf

John Baldwin jhb at FreeBSD.org
Wed Oct 2 21:49:39 UTC 2019


Author: jhb
Date: Wed Oct  2 21:49:39 2019
New Revision: 353023
URL: https://svnweb.freebsd.org/changeset/base/353023

Log:
  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).
  
  MFC after:	2 weeks
  Sponsored by:	DARPA

Modified:
  head/sys/conf/kern.pre.mk

Modified: head/sys/conf/kern.pre.mk
==============================================================================
--- head/sys/conf/kern.pre.mk	Wed Oct  2 21:35:39 2019	(r353022)
+++ head/sys/conf/kern.pre.mk	Wed Oct  2 21:49:39 2019	(r353023)
@@ -322,7 +322,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-all mailing list