84d9c625bf
- Fix for possible unset uid/gid in toproto - Fix for default mtree style - Update libelf - Importing libexecinfo - Resynchronize GCC, mpc, gmp, mpfr - build.sh: Replace params with show-params. This has been done as the make target has been renamed in the same way, while a new target named params has been added. This new target generates a file containing all the parameters, instead of printing it on the console. - Update test48 with new etc/services (Fix by Ben Gras <ben@minix3.org) get getservbyport() out of the inner loop Change-Id: Ie6ad5226fa2621ff9f0dee8782ea48f9443d2091
70 lines
1.9 KiB
Text
70 lines
1.9 KiB
Text
# $NetBSD: Makefile.installimage,v 1.4 2012/11/03 14:25:32 tsutsui Exp $
|
|
#
|
|
# Common Makefile to create a bootable installation image for USB flash etc.
|
|
#
|
|
|
|
#
|
|
# Required variables:
|
|
# INSTIMGBASE
|
|
# Basename of the liveimage
|
|
#
|
|
# Optional variables:
|
|
# INSTIMAGEMB
|
|
# target image size in MB
|
|
# (if empty default IMAGEMB in Makefile.bootimage is used)
|
|
#
|
|
# See Makefile.bootimage for other variables.
|
|
#
|
|
|
|
.if !target(check_INSTIMGBASE)
|
|
check_INSTIMGBASE: .PHONY .NOTMAIN
|
|
.if !defined(INSTIMGBASE)
|
|
@echo "Error: INSTIMGBASE is not set"
|
|
@false
|
|
.else
|
|
@true
|
|
.endif
|
|
.endif
|
|
|
|
.if defined(INSTIMAGEMB)
|
|
IMAGEMB= ${INSTIMAGEMB}
|
|
.endif
|
|
SWAPMB= 0 # no swap
|
|
OMIT_SWAPIMG= yes # nothing to write
|
|
|
|
KERN_SET?= kern-GENERIC
|
|
SETS?= modules base etc
|
|
|
|
FSTAB_IN?= ${NETBSDSRCDIR}/distrib/common/bootimage/fstab.install.in
|
|
|
|
.if ${USE_MBR} != "no"
|
|
DISKPROTO_IN?= ${NETBSDSRCDIR}/distrib/common/bootimage/diskproto.noswap.mbr.in
|
|
.else
|
|
DISKPROTO_IN?= ${NETBSDSRCDIR}/distrib/common/bootimage/diskproto.noswap.in
|
|
.endif
|
|
|
|
# XXX: no permission info for makefs(8)
|
|
IMGDIR_EXTRA= ${RELEASEDIR}/${RELEASEMACHINEDIR} ${RELEASEMACHINEDIR}
|
|
IMGDIR_EXCLUDE= -s ',./installation/cdrom.*,,gp'
|
|
IMGDIR_EXCLUDE+= -s ',./installation/liveimage.*,,gp'
|
|
IMGDIR_EXCLUDE+= -s ',./installation/installimage.*,,gp'
|
|
|
|
IMGBASE= ${INSTIMGBASE}
|
|
|
|
.include "${NETBSDSRCDIR}/distrib/common/bootimage/Makefile.bootimage"
|
|
|
|
# INSTIMG_RELEASEDIR specifies where to install ${INSTIMGBASE}.img.gz.
|
|
# This should be passed from etc/Makefile or etc/etc.${MACHINE}/Makefile.inc
|
|
# but also set default here for manual builds.
|
|
INSTIMG_RELEASEDIR?= ${RELEASEMACHINEDIR}/installation/installimage
|
|
|
|
# should be defined elsewhere?
|
|
MKDIR?= mkdir -p
|
|
|
|
install_image: check_INSTIMGBASE check_RELEASEDIR ${IMGBASE}.img.gz
|
|
${MKDIR} ${INSTIMG_RELEASEDIR}
|
|
${RELEASE_INSTALL} ${IMGBASE}.img.gz ${INSTIMG_RELEASEDIR}
|
|
# note ${MAKESUM} will be calculated in src/etc/Makefile
|
|
|
|
release:
|
|
|