4b35b5643b
s/MP/UP/ kernels were otherwise in place. in my testing on a U60, i couldn't really notice any different in speed, but we need testing on a U1/U5/U10 systems to be sure that GENERIC.UP isn't necessary. for sparc64, this is some what required as USIIIi systems have the memory controller on the CPU, and unless the CPU is spunup, a UP kernel will not function on these systems. (we obviously need to join the NUMA-for-netbsd camp now, too! :-) this should enable the installer to function on all systems that we support, but also give the option for people to install GENERIC.UP on their single-cpu systems if they choose. XXX: i haven't actually tested sysinst with this, but i have built both sparc and sparc64 release iso's successfully with this change (sans having to comment out kern_ctf.c.)
83 lines
2.6 KiB
Makefile
83 lines
2.6 KiB
Makefile
# $NetBSD: Makefile.inc,v 1.31 2010/03/13 08:36:06 mrg Exp $
|
|
#
|
|
# etc.sparc64/Makefile.inc -- sparc64-specific etc Makefile targets
|
|
#
|
|
# Specify whether or not to build 32-bit libs.
|
|
MK32BITLIBS?=no
|
|
|
|
# If you change the list of distributed kernels, don't forget
|
|
# to update the release documentation in distrib/notes/common/contents
|
|
|
|
KERNEL_SETS= GENERIC GENERIC.UP
|
|
|
|
BUILD_KERNELS+= INSTALL
|
|
|
|
MD_INSTALLATION_DIRS= installation/miniroot \
|
|
installation/netboot \
|
|
installation/misc
|
|
INSTALLATION_DIRS+= ${MD_INSTALLATION_DIRS}
|
|
|
|
# Used by 32 bit lib/csu, lib, gnu/lib & libexec/ld.elf_so
|
|
LIBDIR=/usr/lib/32
|
|
BINDIR=/usr/libexec/32
|
|
SPARC32_ENV=MACHINE=sparc MACHINE_ARCH=sparc
|
|
SPARC32=COPTS=-m32 LD="ld -m elf32_sparc" AS="as -32" \
|
|
LIBDIR=${LIBDIR} BINDIR=${BINDIR} \
|
|
SHLIB_LDSTARTFILE=${DESTDIR}${LIBDIR}/crtbeginS.o \
|
|
SHLIB_LDENDFILE=${DESTDIR}${LIBDIR}/crtendS.o
|
|
|
|
.if ${MACHINE_ARCH} == "sparc64" && ${MK32BITLIBS} != "no"
|
|
|
|
# build 32 bit programs
|
|
.for _s64dir in lib/csu lib gnu/lib libexec/ld_elf.so
|
|
.if ${MKOBJDIRS} != "no"
|
|
(cd ${NETBSDSRCDIR}/${_s64dir} && \
|
|
${SPARC32_ENV} ${MAKE} ${SPARC32} ${_M} obj)
|
|
.endif
|
|
.ifndef UPDATE
|
|
(cd ${NETBSDSRCDIR}/${_s64dir} && ${MAKE} cleandir
|
|
.endif
|
|
(cd ${NETBSDSRCDIR}/${_s64dir} && \
|
|
${SPARC32_ENV} ${MAKE} ${SPARC32} ${_M} ${_J} MKSHARE=no dependall \
|
|
&& ${SPARC32_ENV} ${MAKE} ${SPARC32} ${_M} MKSHARE=no install)
|
|
.endfor
|
|
.endif # MACHINE_ARCH==sparc64 && MACHINE==sparc && MK32BITLIBS!=no
|
|
|
|
#
|
|
# Install miniroot images and auxiliary scripts to the release tree
|
|
#
|
|
snap_md_post:
|
|
.if exists($(XSRCDIR)/xc/Imakefile)
|
|
# build X11
|
|
.ifndef XSRC_DONE
|
|
(cd $(XSRCDIR); $(MAKE) release)
|
|
.endif
|
|
.endif
|
|
|
|
# install boot image and installation scripts in netboot directory
|
|
.for file in ofwboot.net
|
|
${HOST_INSTALL_FILE} -m ${NONBINMODE} ${DESTDIR}/usr/mdec/${file} \
|
|
${RELEASEDIR}/${RELEASEMACHINEDIR}/installation/netboot
|
|
.endfor
|
|
.for file in ofwboot bootblk
|
|
${HOST_INSTALL_FILE} -m ${NONBINMODE} ${DESTDIR}/usr/mdec/${file} \
|
|
${RELEASEDIR}/${RELEASEMACHINEDIR}/installation/misc
|
|
.endfor
|
|
.for file in installboot
|
|
${HOST_INSTALL_FILE} -m ${BINMODE} ${DESTDIR}/usr/sbin/${file} \
|
|
${RELEASEDIR}/${RELEASEMACHINEDIR}/installation/misc
|
|
.endfor
|
|
|
|
# compute checksums
|
|
.for dir in ${MD_INSTALLATION_DIRS}
|
|
${MAKESUMS} -t ${RELEASEDIR}/${RELEASEMACHINEDIR}/${dir} '*'
|
|
.endfor
|
|
|
|
ISOBOOTFILEDIR!=cd ${.CURDIR}/../distrib/${MACHINE}/bootfs && ${PRINTOBJDIR}
|
|
ISOBOOTFILE?= ${ISOBOOTFILEDIR}/boot.fs
|
|
|
|
iso-image-md-post:
|
|
SUNLABEL=${TOOL_SUNLABEL:Q} \
|
|
${HOST_SH} ${NETBSDSRCDIR}/distrib/common/sunbootcd.sh \
|
|
${CDROM.image} - - - - ${ISOBOOTFILE}
|