Makefile.bootimage revision 1.40
11.40Smartin# $NetBSD: Makefile.bootimage,v 1.40 2024/06/25 09:07:14 martin Exp $ 21.1Stsutsui# 31.1Stsutsui# Copyright (c) 2009, 2010, 2011 Izumi Tsutsui. All rights reserved. 41.1Stsutsui# 51.1Stsutsui# Redistribution and use in source and binary forms, with or without 61.1Stsutsui# modification, are permitted provided that the following conditions 71.1Stsutsui# are met: 81.1Stsutsui# 1. Redistributions of source code must retain the above copyright 91.1Stsutsui# notice, this list of conditions and the following disclaimer. 101.1Stsutsui# 2. Redistributions in binary form must reproduce the above copyright 111.1Stsutsui# notice, this list of conditions and the following disclaimer in the 121.1Stsutsui# documentation and/or other materials provided with the distribution. 131.1Stsutsui# 141.1Stsutsui# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 151.1Stsutsui# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 161.1Stsutsui# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 171.1Stsutsui# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 181.1Stsutsui# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 191.1Stsutsui# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 201.1Stsutsui# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 211.1Stsutsui# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 221.1Stsutsui# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 231.1Stsutsui# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 241.1Stsutsui 251.1Stsutsui# 261.1Stsutsui# Makefile to create a bootable FS image for USB flash or emulators 271.1Stsutsui# 281.1Stsutsui 291.1Stsutsui# 301.1Stsutsui# Required variables: 311.1Stsutsui# RELEASEDIR 321.1Stsutsui# Should be defined in nbmake-${MACHINE} 331.1Stsutsui# IMGBASE 341.1Stsutsui# Basename of the image 351.1Stsutsui# 361.1Stsutsui# Optional variables: 371.1Stsutsui# USE_MBR 381.1Stsutsui# set yes if target disk image requires MBR partition 391.6Stsutsui# (default: no) 401.23Sjoerg# USE_GPT 411.23Sjoerg# set yes if target disk image requires GPT partition 421.23Sjoerg# (default: no) 431.31Stsutsui# USE_GPTMBR 441.31Stsutsui# set yes if target disk image requires GPT partition 451.31Stsutsui# with hybrid MBR boot code 461.31Stsutsui# (default: no; valid only if USE_GPT=yes) 471.5Stsutsui# MBR_BOOTCODE 481.5Stsutsui# optional MBR bootcode which should be installed by fdisk(8) 491.5Stsutsui# (default: empty) 501.5Stsutsui# - specified MBR_BOOTCODE must exist in ${DESTDIR}/usr/mdec 511.5Stsutsui# - if MBR_BOOTCODE is not specified, 521.5Stsutsui# MBR_DEFAULT_BOOTCODE (default: mbr) will be used 531.5Stsutsui# if the target ${MACHINE} has the one in /usr/mdec 541.1Stsutsui# USE_SUNLABEL 551.1Stsutsui# set yes if target disk image requires Sun's label 561.1Stsutsui# (default: no) 571.1Stsutsui# INSTALLBOOT_AFTER_DISKLABEL (untested) 581.1Stsutsui# set yes if the target ${MACHINE} requires disklabel 591.1Stsutsui# to run installboot(8), like hp300 601.1Stsutsui# (default: empty) 611.1Stsutsui# IMAGEMB 621.1Stsutsui# target image size in MB 631.1Stsutsui# (default: 2048) 641.1Stsutsui# SWAPMB 651.1Stsutsui# swap size in target image in MB 661.1Stsutsui# (default: 128) 671.23Sjoerg# EFIMB 681.23Sjoerg# EFI partition size in target image in MB 691.23Sjoerg# (default: 128) 701.24Stsutsui# FATMB 711.24Stsutsui# FAT partition size in target image in MB 721.24Stsutsui# (default: 0) 731.31Stsutsui# GPTSECTORS 741.31Stsutsui# Size of a region reserved for the secondary GPT table/entry 751.31Stsutsui# at the end of the target image in sectors 761.31Stsutsui# (default: 2048 if USE_GPT=yes, otherwise 0) 771.1Stsutsui# KERN_SET 781.1Stsutsui# kernel set name which should be extracted into image 791.1Stsutsui# (default: kern-GENERIC) 801.1Stsutsui# SETS 811.1Stsutsui# binary sets that should be extracted into image 821.34Snia# (default: modules base etc comp games gpufw man manhtml misc 831.29Smaya# rescue tests text xbase xcomp xetc xfont xserver) 841.1Stsutsui# SETS_DIR 851.1Stsutsui# directory path where binary sets are stored 861.1Stsutsui# (default: ${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/sets) 871.1Stsutsui# IMGFILE_EXTRA 881.1Stsutsui# list of additional files to be copied into images, 891.1Stsutsui# containing one or more tuples of the form: 901.1Stsutsui# FILE TARGETPATH 911.1Stsutsui# for installation image etc. 921.1Stsutsui# (default: empty) 931.1Stsutsui# IMGDIR_EXTRA 941.1Stsutsui# list of additional directories to be copied into images, 951.1Stsutsui# containing one or more tuples of the form: 961.1Stsutsui# DIR TARGETPATH 971.1Stsutsui# for installation image etc. 981.1Stsutsui# (default: empty) 991.6Stsutsui# XXX: currently permissions in IMGDIR_EXTRA are not handled 1001.1Stsutsui# IMGDIR_EXCLUDE 1011.1Stsutsui# pax(1) options to exclude files which should not copied 1021.1Stsutsui# into TARGETPATH in IMGDIR_EXTRA 1031.1Stsutsui# (default: empty) 1041.1Stsutsui# FSTAB_IN 1051.1Stsutsui# template file of /etc/fstab 1061.1Stsutsui# (default: ${DISTRIBDIR}/common/bootimage/fstab.in) 1071.1Stsutsui# SPEC_IN 1081.1Stsutsui# default files of spec file for makefs(8) 1091.1Stsutsui# (default: ${DISTRIBDIR}/common/bootimage/spec.in) 1101.1Stsutsui# SPEC_EXTRA 1111.1Stsutsui# additional files of spec file for makefs(8) 1121.1Stsutsui# (default: empty) 1131.1Stsutsui# IMGMAKEFSOPTIONS 1141.1Stsutsui# options passed to makefs(8) to create root file system 1151.1Stsutsui# (default: -o bsize=16384,fsize=2048,density=8192) 1161.5Stsutsui# INSTALLBOOTOPTIONS 1171.5Stsutsui# options passed to installboot(8), e.g., -o console=com0 1181.5Stsutsui# (default: empty) 1191.1Stsutsui# PRIMARY_BOOT 1201.1Stsutsui# primary boot loader that should be installed into 1211.1Stsutsui# the target image via installboot(8) 1221.1Stsutsui# (default: empty) 1231.1Stsutsui# SECONDARY_BOOT 1241.1Stsutsui# secondary bootloader that should be put into the target image 1251.1Stsutsui# (default: empty) 1261.1Stsutsui# SECONDARY_BOOT_ARG 1271.1Stsutsui# extra arguments that should be passed to installboot(8) 1281.1Stsutsui# to specify the secondary bootloader 1291.1Stsutsui# (default: empty) 1301.1Stsutsui# DISKPROTO_IN 1311.1Stsutsui# template file of disklabel -R 1321.1Stsutsui# (default: ${DISTRIBDIR}/common/bootimage/diskproto.in 1331.1Stsutsui# or ${DISTRIBDIR}/common/bootimage/diskproto.mbr.in) 1341.23Sjoerg# EFIBOOT 1351.23Sjoerg# EFI bootloader 1361.23Sjoerg# (default: empty) 1371.24Stsutsui# MBRFAT 1381.24Stsutsui# MBR partition type value for FAT 1391.24Stsutsui# (default: 6 ("16-bit FAT, more than 32M")) 1401.24Stsutsui# FATMAKEFSOPTIONS 1411.24Stsutsui# options passed to makefs(8) to create a FAT partition 1421.24Stsutsui# (default: -o fat_type=16) 1431.24Stsutsui# FATFILES 1441.24Stsutsui# list of additional files to be copied into FAT partition 1451.24Stsutsui# (default: empty) 1461.26Sjmcneill# IMAGEHOSTNAME 1471.26Sjmcneill# if set, sets the default hostname in rc.conf (default: empty) 1481.1Stsutsui# 1491.1Stsutsui 1501.1Stsutsui.include <bsd.own.mk> # 1511.1Stsutsui.include <bsd.endian.mk> # for TARGET_ENDIANNESS 1521.1Stsutsui 1531.1Stsutsui.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib" 1541.1Stsutsui 1551.13Schristos.if ${MKREPRO_TIMESTAMP:Uno} != "no" 1561.13SchristosMAKEFS_TIMESTAMP=-T "${MKREPRO_TIMESTAMP}" 1571.23SjoergGPT_TIMESTAMP=-T "${MKREPRO_TIMESTAMP}" 1581.15SchristosPAX_TIMESTAMP=--timestamp "${MKREPRO_TIMESTAMP}" 1591.15Schristos.endif 1601.12Schristos 1611.1Stsutsui.if empty(IMGBASE) 1621.1Stsutsui.BEGIN: 1631.1Stsutsui @echo "Error: IMGBASE is not set" 1641.1Stsutsui @false 1651.1Stsutsui.endif 1661.1Stsutsui 1671.1Stsutsui# should be defined elsewhere? 1681.1StsutsuiCAT?= cat 1691.1StsutsuiCHMOD?= chmod 1701.1StsutsuiDD?= dd 1711.1StsutsuiMKDIR?= mkdir -p 1721.1StsutsuiRM?= rm 1731.1Stsutsui 1741.36SchristosMAKESPEC= ${HOST_SH} ${NETBSDSRCDIR}/etc/makespec 1751.36Schristos 1761.1Stsutsui# 1771.1Stsutsui# common definitions for image 1781.1Stsutsui# 1791.1StsutsuiUSE_MBR?= no 1801.23SjoergUSE_GPT?= no 1811.25SjmcneillUSE_GPTMBR?= no 1821.1StsutsuiUSE_SUNLABEL?= no 1831.1StsutsuiINSTALLBOOT_AFTER_DISKLABEL?= no 1841.1Stsutsui 1851.1Stsutsui# 1861.1Stsutsui# size parameters for image 1871.1Stsutsui# 1881.1StsutsuiIMAGEMB?= 2048 # 2048MB 1891.1StsutsuiSWAPMB?= 128 # 128MB 1901.23Sjoerg.if ${USE_GPT} == "no" 1911.23SjoergEFIMB?= 0 1921.23SjoergGPTSECTORS= 0 1931.23Sjoerg.else 1941.23SjoergEFIMB?= 128 # 128MB 1951.23SjoergGPTSECTORS= 2048 1961.23Sjoerg.endif 1971.24StsutsuiFATMB?= 0 1981.1Stsutsui 1991.3Stsutsui# XXX: SWAPMB could be zero and expr(1) returns exit status 1 in that case 2001.1StsutsuiIMAGESECTORS!= expr ${IMAGEMB} \* 1024 \* 1024 / 512 2011.3StsutsuiSWAPSECTORS!= expr ${SWAPMB} \* 1024 \* 1024 / 512 || true 2021.23SjoergEFISECTORS!= expr ${EFIMB} \* 1024 \* 1024 / 512 || true 2031.24StsutsuiFATSECTORS!= expr ${FATMB} \* 1024 \* 1024 / 512 || true 2041.1Stsutsui 2051.23Sjoerg.if ${USE_MBR} == "no" && ${USE_GPT} == "no" 2061.1StsutsuiLABELSECTORS?= 0 2071.1Stsutsui.else 2081.1Stsutsui#LABELSECTORS?= 63 # historical 2091.1Stsutsui#LABELSECTORS?= 32 # 16KB aligned 2101.1StsutsuiLABELSECTORS?= 2048 # 1MB aligned for modern flash devices 2111.1Stsutsui.endif 2121.1Stsutsui 2131.23SjoergFSSECTORS!= expr ${IMAGESECTORS} - ${SWAPSECTORS} - ${LABELSECTORS} \ 2141.30Smrg - ${EFISECTORS} - ${GPTSECTORS} - ${FATSECTORS} || test $$? -eq 1 || exit 1 2151.30SmrgFSSIZE!= expr ${FSSECTORS} \* 512 || test $$? -eq 1 || exit 1 2161.1Stsutsui 2171.1Stsutsui# parameters for disklabel and MBR 2181.1StsutsuiHEADS= 64 2191.1StsutsuiSECTORS= 32 2201.1StsutsuiCYLINDERS!= expr ${IMAGESECTORS} / \( ${HEADS} \* ${SECTORS} \) 2211.1StsutsuiSECPERCYLINDERS!= expr ${HEADS} \* ${SECTORS} 2221.1StsutsuiMBRHEADS= 255 2231.1StsutsuiMBRSECTORS= 63 2241.1StsutsuiMBRCYLINDERS!= expr ${IMAGESECTORS} / \( ${MBRHEADS} \* ${MBRSECTORS} \) 2251.1StsutsuiMBRNETBSD= 169 2261.24StsutsuiMBRFAT?= 6 # 16-bit FAT, more than 32M 2271.1Stsutsui 2281.24StsutsuiBSDPARTSECTORS!= expr ${IMAGESECTORS} - ${LABELSECTORS} \ 2291.24Stsutsui - ${EFISECTORS} - ${GPTSECTORS} - ${FATSECTORS} 2301.30SmrgFSOFFSET!= expr ${LABELSECTORS} + ${EFISECTORS} + ${FATSECTORS} || test $$? -eq 1 || exit 1 2311.24StsutsuiSWAPOFFSET!= expr ${LABELSECTORS} + ${FSSECTORS} \ 2321.30Smrg + ${EFISECTORS} + ${FATSECTORS} || test $$? -eq 1 || exit 1 2331.24StsutsuiFATOFFSET= ${LABELSECTORS} 2341.1Stsutsui 2351.1Stsutsui# parameters for sunlabel 2361.1StsutsuiFSCYLINDERS!= expr ${FSSECTORS} / \( ${HEADS} \* ${SECTORS} \) 2371.3StsutsuiSWAPCYLINDERS!= expr ${SWAPSECTORS} / \( ${HEADS} \* ${SECTORS} \) || true 2381.1Stsutsui 2391.23Sjoerg.if ${USE_GPT} != "no" 2401.33SchristosBOOTDISK_UUID=`${TOOL_GPT} ${GPT_TIMESTAMP} ${WORKMBR} show -i 2 | ${TOOL_AWK} '/^GUID/ {print $$2}'` 2411.33SchristosSWAPDISK_UUID=`${TOOL_GPT} ${GPT_TIMESTAMP} ${WORKMBR} show -i 3 | ${TOOL_AWK} '/^GUID/ {print $$2}'` 2421.23Sjoerg.endif 2431.1Stsutsui 2441.1Stsutsui# 2451.1Stsutsui# definitions to create root fs 2461.1Stsutsui# 2471.29SmayaSETS_DEFAULT= modules base etc comp games gpufw man misc rescue tests text 2481.34Snia.if ${MKCOMPAT} != "no" 2491.34SniaSETS_DEFAULT+= base32 2501.34Snia.endif 2511.35Snia.if ${MKCOMPAT} != "no" && \ 2521.35Snia (${MACHINE_ARCH} == "mips64eb" || ${MACHINE_ARCH} == "mips64el") 2531.35SniaSETS_DEFAULT+= base64 2541.35Snia.endif 2551.34Snia.if ${MKHTML} != "no" 2561.34SniaSETS_DEFAULT+= manhtml 2571.34Snia.endif 2581.1Stsutsui.if ${MKX11} != "no" 2591.1StsutsuiSETS_DEFAULT+= xbase xcomp xetc xfont xserver 2601.1Stsutsui.endif 2611.1Stsutsui 2621.1StsutsuiKERN_SET?= kern-GENERIC 2631.1StsutsuiSETS?= ${SETS_DEFAULT} 2641.1StsutsuiIMG_SETS= ${KERN_SET} ${SETS} 2651.1StsutsuiSETS_DIR?= ${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/sets 2661.1Stsutsui 2671.1StsutsuiFSTAB_IN?= ${DISTRIBDIR}/common/bootimage/fstab.in 2681.1StsutsuiSPEC_IN?= ${DISTRIBDIR}/common/bootimage/spec.in 2691.1Stsutsui 2701.1StsutsuiIMGMAKEFSOPTIONS?= -o bsize=16384,fsize=2048,density=8192 2711.24StsutsuiFATMAKEFSOPTIONS?= -o fat_type=16 2721.1Stsutsui 2731.1StsutsuiWORKDIR?= work 2741.1StsutsuiWORKSPEC?= work.spec 2751.1StsutsuiWORKFSTAB?= work.fstab 2761.1StsutsuiWORKRCCONF?= work.rc.conf 2771.1StsutsuiWORKFS?= work.rootfs 2781.1StsutsuiTARGETFS?= imgroot.fs 2791.19SaymericCOMPRESS_PROGRAM=${"${USE_XZ_SETS:Uno}"!="no":?${TOOL_XZ}:${TOOL_GZIP}} 2801.18SmartinTAR_SUFF= ${"${USE_XZ_SETS:Uno}"!="no":?tar.xz:tgz} 2811.1Stsutsui 2821.1StsutsuiCLEANFILES+= ${WORKSPEC} ${WORKFSTAB} ${WORKRCCONF} ${WORKFS} 2831.1StsutsuiCLEANFILES+= ${TARGETFS} 2841.1Stsutsui 2851.1Stsutsui# 2861.23Sjoerg# definitions to create image 2871.23Sjoerg# 2881.23Sjoerg.if ${SWAPSECTORS} == 0 2891.23Sjoerg. if ${USE_MBR} != "no" 2901.23SjoergDISKPROTO_IN?= ${DISTRIBDIR}/common/bootimage/diskproto.noswap.mbr.in 2911.23Sjoerg. else 2921.23SjoergDISKPROTO_IN?= ${DISTRIBDIR}/common/bootimage/diskproto.noswap.in 2931.23Sjoerg. endif 2941.23Sjoerg.else 2951.23Sjoerg. if ${USE_MBR} != "no" 2961.23SjoergDISKPROTO_IN?= ${DISTRIBDIR}/common/bootimage/diskproto.mbr.in 2971.23Sjoerg. else 2981.23SjoergDISKPROTO_IN?= ${DISTRIBDIR}/common/bootimage/diskproto.in 2991.23Sjoerg. endif 3001.23Sjoerg.endif 3011.23Sjoerg 3021.23SjoergMBR_DEFAULT_BOOTCODE?= mbr 3031.23Sjoerg 3041.23SjoergWORKMBR?= work.mbr 3051.23SjoergWORKMBRTRUNC?= work.mbr.truncated 3061.23SjoergWORKSWAP?= work.swap 3071.23SjoergWORKEFI?= work.efi 3081.23SjoergWORKGPT?= work.gpt 3091.23SjoergWORKLABEL?= work.diskproto 3101.23SjoergWORKIMG?= work.img 3111.23SjoergEFIWORKDIR?= work.efidir 3121.24StsutsuiWORKFAT?= work.fat 3131.24StsutsuiWORKFATDIR?= work.fatdir 3141.23Sjoerg 3151.23Sjoerg.if ${USE_GPT} != "no" 3161.23Sjoerg${WORKFSTAB}: ${WORKMBR} 3171.27Stsutsui 3181.27Stsutsui.BEGIN: 3191.27Stsutsui @if [ -f ${WORKMBR} ]; then \ 3201.27Stsutsui st_size=`${TOOL_STAT} -f %z ${WORKMBR}`; \ 3211.27Stsutsui if [ "$$st_size" -ne "$$((${IMAGESECTORS} * 512))" ]; then \ 3221.27Stsutsui echo Removing stale ${WORKMBR} ...; \ 3231.27Stsutsui rm -f ${WORKMBR}; \ 3241.27Stsutsui fi \ 3251.27Stsutsui fi 3261.23Sjoerg.endif 3271.23Sjoerg 3281.23Sjoerg${WORKFSTAB}: 3291.23Sjoerg @echo Preparing /etc/fstab ... 3301.23Sjoerg.if ${USE_GPT} != "no" 3311.23Sjoerg. if ${SWAPSECTORS} != 0 3321.23Sjoerg ${TOOL_SED} \ 3331.23Sjoerg -e "s/ROOT.a/NAME=${BOOTDISK_UUID}/" \ 3341.23Sjoerg -e "s/ROOT.b/NAME=${SWAPDISK_UUID}/" \ 3351.23Sjoerg < ${FSTAB_IN} > ${WORKFSTAB} 3361.23Sjoerg. else 3371.23Sjoerg ${TOOL_SED} \ 3381.23Sjoerg -e "s/ROOT.a/NAME=${BOOTDISK_UUID}/" \ 3391.23Sjoerg -e "/ROOT.b/d" \ 3401.23Sjoerg < ${FSTAB_IN} > ${WORKFSTAB} 3411.23Sjoerg. endif 3421.23Sjoerg.else 3431.23Sjoerg. if ${SWAPSECTORS} != 0 3441.23Sjoerg ${TOOL_SED} < ${FSTAB_IN} > ${WORKFSTAB} 3451.23Sjoerg. else 3461.23Sjoerg ${TOOL_SED} \ 3471.23Sjoerg -e "/ROOT.b/d" \ 3481.23Sjoerg < ${FSTAB_IN} > ${WORKFSTAB} 3491.23Sjoerg. endif 3501.23Sjoerg.endif 3511.23Sjoerg 3521.23Sjoerg# 3531.1Stsutsui# create root file system for the image 3541.1Stsutsui# 3551.23Sjoerg${TARGETFS}: prepare_md_post ${WORKFSTAB} 3561.36Schristos @${RM} -f ${WORKSPEC} 3571.1Stsutsui @if [ ! -d ${RELEASEDIR}/${RELEASEMACHINEDIR} ]; then \ 3581.1Stsutsui echo "Missing ${RELEASEDIR}/${RELEASEMACHINEDIR}, aborting"; \ 3591.1Stsutsui false; \ 3601.1Stsutsui fi; 3611.14Schristos @${MKDIR} ${MKDIRPERM} ${WORKDIR} 3621.1Stsutsui.for set in ${IMG_SETS} 3631.18Smartin @if [ ! -f ${SETS_DIR}/${set}.${TAR_SUFF} ]; then \ 3641.18Smartin echo "Missing ${SETS_DIR}/${set}.${TAR_SUFF}, aborting";\ 3651.1Stsutsui false; \ 3661.1Stsutsui fi 3671.18Smartin @echo Extracting ${set}.${TAR_SUFF} ... 3681.19Saymeric @(cd ${WORKDIR}; ${TOOL_PAX} ${PAX_TIMESTAMP} -rn \ 3691.19Saymeric --use-compress-program=${COMPRESS_PROGRAM:Q} \ 3701.19Saymeric -f ${SETS_DIR}/${set}.${TAR_SUFF} .) 3711.1Stsutsui.endfor 3721.1Stsutsui.if defined(SECONDARY_BOOT) 3731.1Stsutsui @echo Copying secondary boot... 3741.21Stsutsui ${INSTALL} ${COPY} -m 0444 ${WORKDIR}/usr/mdec/${SECONDARY_BOOT} ${WORKDIR} 3751.1Stsutsui.endif 3761.14Schristos ${INSTALL} ${COPY} -m 0644 ${WORKFSTAB} ${WORKDIR}/etc/fstab 3771.1Stsutsui @echo Setting rc_configured=YES in /etc/rc.conf ... 3781.1Stsutsui ${TOOL_SED} "s/rc_configured=NO/rc_configured=YES/" \ 3791.1Stsutsui < ${WORKDIR}/etc/rc.conf > ${WORKRCCONF} 3801.26Sjmcneill.if defined(IMAGEHOSTNAME) 3811.26Sjmcneill @echo Setting hostname=${IMAGEHOSTNAME} in /etc/rc.conf ... 3821.26Sjmcneill echo "hostname=${IMAGEHOSTNAME}" >> ${WORKRCCONF} 3831.26Sjmcneill.endif 3841.26Sjmcneill.if ${SWAPSECTORS} == 0 3851.26Sjmcneill @echo Setting no_swap=YES in /etc/rc.conf ... 3861.26Sjmcneill echo "no_swap=YES" >> ${WORKRCCONF} 3871.26Sjmcneill @echo Setting savecore=NO in /etc/rc.conf ... 3881.26Sjmcneill echo "savecore=NO" >> ${WORKRCCONF} 3891.26Sjmcneill.endif 3901.28Sjmcneill.if defined(RC_CONF_EXTRA) 3911.28Sjmcneill @echo Adding contents of ${RC_CONF_EXTRA} to /etc/rc.conf ... 3921.28Sjmcneill cat ${RC_CONF_EXTRA} >> ${WORKRCCONF} 3931.28Sjmcneill.endif 3941.14Schristos ${INSTALL} ${COPY} -m 0644 ${WORKRCCONF} ${WORKDIR}/etc/rc.conf 3951.1Stsutsui.if defined(IMGDIR_EXTRA) 3961.1Stsutsui @echo Copying extra dirs... 3971.1Stsutsui.for _SRCDIR _TARGET in ${IMGDIR_EXTRA} 3981.1Stsutsui @if [ ! -d ${_SRCDIR} ]; then \ 3991.1Stsutsui echo "${_SRCDIR} is not directory, aborting"; \ 4001.1Stsutsui false; \ 4011.1Stsutsui fi 4021.14Schristos ${MKDIR} ${MKDIRPERM} ${WORKDIR}/${_TARGET} 4031.1Stsutsui (cd ${_SRCDIR} ; \ 4041.21Stsutsui ${TOOL_PAX} ${PAX_TIMESTAMP} -rw -pe -v \ 4051.1Stsutsui ${IMGDIR_EXCLUDE} \ 4061.1Stsutsui . ${.OBJDIR}/${WORKDIR}/${_TARGET} ) 4071.1Stsutsui.endfor 4081.1Stsutsui.endif 4091.1Stsutsui.if defined(IMGFILE_EXTRA) 4101.1Stsutsui @echo Copying extra files... 4111.1Stsutsui.for _SRC _TARGET in ${IMGFILE_EXTRA} 4121.1Stsutsui @if [ ! -f ${_SRC} ]; then \ 4131.1Stsutsui echo "${_SRC} in IMGFILE_EXTRA not found, aborting"; \ 4141.1Stsutsui false; \ 4151.1Stsutsui fi 4161.1Stsutsui @if [ -f ${_SRC} ]; then \ 4171.21Stsutsui echo ${INSTALL} ${COPY} -m 0644 ${_SRC} ${WORKDIR}/${_TARGET}; \ 4181.21Stsutsui ${INSTALL} ${COPY} -m 0644 ${_SRC} ${WORKDIR}/${_TARGET}; \ 4191.36Schristos echo "./${_TARGET} type=file uname=root gname=wheel mode=0555" >> ${WORKSPEC}; \ 4201.1Stsutsui fi 4211.1Stsutsui.endfor 4221.1Stsutsui.endif 4231.1Stsutsui @echo Preparing spec files for makefs... 4241.1Stsutsui cat ${WORKDIR}/etc/mtree/* | \ 4251.1Stsutsui ${TOOL_SED} -e 's/ size=[0-9]*//' > ${WORKSPEC} 4261.10Ssnj ${HOST_SH} ${WORKDIR}/dev/MAKEDEV -s all ipty | \ 4271.1Stsutsui ${TOOL_SED} -e '/^\. type=dir/d' -e 's,^\.,./dev,' >> ${WORKSPEC} 4281.1Stsutsui cat ${SPEC_IN} >> ${WORKSPEC} 4291.1Stsutsui.if defined(SECONDARY_BOOT) 4301.1Stsutsui echo "./${SECONDARY_BOOT} type=file uname=root gname=wheel mode=0444" \ 4311.1Stsutsui >> ${WORKSPEC} 4321.1Stsutsui.endif 4331.1Stsutsui.if defined(SPEC_EXTRA) 4341.1Stsutsui cat ${SPEC_EXTRA} >> ${WORKSPEC} 4351.1Stsutsui.endif 4361.37Schristos for i in ${WORKDIR}/netbsd.*; do \ 4371.37Schristos if [ -e $$i ]; then \ 4381.37Schristos echo "./$$(basename $$i) type=file uname=root gname=wheel mode=0444" >> ${WORKSPEC}; \ 4391.37Schristos fi; \ 4401.37Schristos done 4411.37Schristos if [ -d ${WORKDIR}/${RELEASEMACHINEDIR} ]; then \ 4421.37Schristos ${MAKESPEC} -d ${WORKDIR} ${RELEASEMACHINEDIR} >> ${WORKSPEC}; \ 4431.36Schristos fi 4441.4Sriz @echo Creating rootfs... 4451.1Stsutsui # XXX /var/spool/ftp/hidden is unreadable 4461.1Stsutsui ${CHMOD} +r ${WORKDIR}/var/spool/ftp/hidden 4471.1Stsutsui ${TOOL_MAKEFS} -M ${FSSIZE} -m ${FSSIZE} \ 4481.1Stsutsui -B ${TARGET_ENDIANNESS} \ 4491.36Schristos -xx -F ${WORKSPEC} -N ${WORKDIR}/etc \ 4501.13Schristos ${MAKEFS_TIMESTAMP} \ 4511.1Stsutsui ${IMGMAKEFSOPTIONS} \ 4521.1Stsutsui ${WORKFS} ${WORKDIR} 4531.1Stsutsui.if !empty(PRIMARY_BOOT) && ${INSTALLBOOT_AFTER_DISKLABEL} == "no" 4541.5Stsutsui ${TOOL_INSTALLBOOT} -v -m ${MACHINE} ${INSTALLBOOTOPTIONS} ${WORKFS} \ 4551.1Stsutsui ${WORKDIR}/usr/mdec/${PRIMARY_BOOT} ${SECONDARY_BOOT_ARG} 4561.1Stsutsui.endif 4571.1Stsutsui @echo done. 4581.1Stsutsui mv ${WORKFS} ${.TARGET} 4591.1Stsutsui 4601.23SjoergTARGET_BLOCKS= 4611.23Sjoerg.if ${USE_MBR} != "no" || ${USE_GPT} != "no" 4621.23SjoergTARGET_BLOCKS+= ${WORKMBRTRUNC} 4631.23Sjoerg.endif 4641.23Sjoerg.if ${USE_GPT} != "no" 4651.23SjoergTARGET_BLOCKS+= ${WORKEFI} 4661.23Sjoerg.endif 4671.24Stsutsui.if ${FATSECTORS} != 0 4681.24StsutsuiTARGET_BLOCKS+= ${WORKFAT} 4691.24Stsutsui.endif 4701.23SjoergTARGET_BLOCKS+= ${TARGETFS} 4711.23Sjoerg.if ${SWAPSECTORS} != 0 4721.23SjoergTARGET_BLOCKS+= ${WORKSWAP} 4731.23Sjoerg.endif 4741.23Sjoerg.if ${USE_GPT} != "no" 4751.23SjoergTARGET_BLOCKS+= ${WORKGPT} 4761.1Stsutsui.endif 4771.1Stsutsui 4781.23SjoergCLEANFILES+= ${WORKMBR} ${WORKMBRTRUNC} ${WORKSWAP} 4791.23SjoergCLEANFILES+= ${WORKEFI} ${WORKGPT} 4801.24StsutsuiCLEANFILES+= ${WORKFAT} 4811.23SjoergCLEANFILES+= ${WORKLABEL}.tmp ${WORKLABEL} 4821.23SjoergCLEANFILES+= ${WORKIMG} ${IMGBASE}.img 4831.5Stsutsui 4841.23Sjoerg${WORKSWAP}: 4851.23Sjoerg.if ${SWAPSECTORS} == 0 4861.23Sjoerg printf "" > ${WORKSWAP} 4871.23Sjoerg.else 4881.23Sjoerg ${DD} if=/dev/zero of=${WORKSWAP} seek=$$((${SWAPSECTORS} - 1)) count=1 4891.23Sjoerg.endif 4901.1Stsutsui 4911.23Sjoerg${WORKMBRTRUNC}: ${WORKMBR} 4921.23Sjoerg ${DD} if=${WORKMBR} count=${LABELSECTORS} of=${WORKMBRTRUNC} 4931.1Stsutsui 4941.1Stsutsui${WORKLABEL}: 4951.1Stsutsui ${TOOL_SED} \ 4961.1Stsutsui -e "s/@@SECTORS@@/${SECTORS}/" \ 4971.1Stsutsui -e "s/@@HEADS@@/${HEADS}/" \ 4981.1Stsutsui -e "s/@@SECPERCYLINDERS@@/${SECPERCYLINDERS}/" \ 4991.1Stsutsui -e "s/@@CYLINDERS@@/${CYLINDERS}/" \ 5001.1Stsutsui -e "s/@@IMAGESECTORS@@/${IMAGESECTORS}/" \ 5011.1Stsutsui -e "s/@@FSSECTORS@@/${FSSECTORS}/" \ 5021.1Stsutsui -e "s/@@FSOFFSET@@/${FSOFFSET}/" \ 5031.1Stsutsui -e "s/@@SWAPSECTORS@@/${SWAPSECTORS}/" \ 5041.1Stsutsui -e "s/@@SWAPOFFSET@@/${SWAPOFFSET}/" \ 5051.1Stsutsui -e "s/@@BSDPARTSECTORS@@/${BSDPARTSECTORS}/" \ 5061.24Stsutsui -e "s/@@FATSECTORS@@/${FATSECTORS}/" \ 5071.24Stsutsui -e "s/@@FATOFFSET@@/${FATOFFSET}/" \ 5081.1Stsutsui < ${DISKPROTO_IN} > ${WORKLABEL}.tmp 5091.1Stsutsui mv ${WORKLABEL}.tmp ${WORKLABEL} 5101.1Stsutsui 5111.23Sjoerg${WORKEFI}: ${TARGETFS} 5121.23Sjoerg @echo create EFI system partition... 5131.23Sjoerg @${MKDIR} ${MKDIRPERM} ${EFIWORKDIR}/EFI/boot 5141.23Sjoerg.for f in ${EFIBOOT} 5151.23Sjoerg ${INSTALL} ${COPY} -m 0644 ${f} ${EFIWORKDIR}/EFI/boot/`basename ${f}` 5161.23Sjoerg.endfor 5171.23Sjoerg ${RM} -f ${WORKEFI} 5181.23Sjoerg ${TOOL_MAKEFS} -M ${EFIMB}m -m ${EFIMB}m \ 5191.23Sjoerg -B ${TARGET_ENDIANNESS} \ 5201.23Sjoerg ${MAKEFS_TIMESTAMP} \ 5211.23Sjoerg -t msdos -o F=32,c=1 \ 5221.23Sjoerg ${WORKEFI} ${EFIWORKDIR} 5231.23Sjoerg 5241.24Stsutsui${WORKFAT}: ${TARGETFS} ${FATFILES} 5251.24Stsutsui @echo create FAT partition for bootstrap files... 5261.24Stsutsui @${MKDIR} ${MKDIRPERM} ${WORKFATDIR} 5271.24Stsutsui.if defined(FATFILES) 5281.24Stsutsui @echo Copying files for FAT partition... 5291.24Stsutsui.for f in ${FATFILES} 5301.24Stsutsui @if [ ! -f ${f} ]; then \ 5311.24Stsutsui echo "${f} in FATFILES not found, aborting"; \ 5321.24Stsutsui false; \ 5331.24Stsutsui fi 5341.24Stsutsui ${INSTALL} ${COPY} -m 0644 ${f} ${WORKFATDIR} 5351.24Stsutsui.endfor 5361.24Stsutsui.endif 5371.24Stsutsui ${RM} -f ${WORKFAT} 5381.24Stsutsui ${TOOL_MAKEFS} -M ${FATMB}m -m ${FATMB}m \ 5391.24Stsutsui ${MAKEFS_TIMESTAMP} \ 5401.24Stsutsui -t msdos \ 5411.24Stsutsui ${FATMAKEFSOPTIONS} \ 5421.24Stsutsui ${WORKFAT} ${WORKFATDIR} 5431.24Stsutsui 5441.23Sjoerg${WORKMBR}: 5451.23Sjoerg.if ${USE_GPT} != "no" 5461.23Sjoerg @echo creating GPT header and partition entries... 5471.23Sjoerg ${RM} -f ${WORKMBR} 5481.23Sjoerg ${DD} if=/dev/zero of=${WORKMBR} seek=$$((${IMAGESECTORS} - 1)) count=1 5491.33Schristos ${TOOL_GPT} ${GPT_TIMESTAMP} ${WORKMBR} create 5501.33Schristos ${TOOL_GPT} ${GPT_TIMESTAMP} ${WORKMBR} add -a 1m -s ${EFISECTORS} -t efi -l "EFI system" 5511.40Smartin ${TOOL_GPT} ${GPT_TIMESTAMP} ${WORKMBR} add -a 1m -s ${FSSECTORS} -t ffs -l "NBImgRoot" 5521.23Sjoerg. if ${SWAPSECTORS} != 0 5531.33Schristos ${TOOL_GPT} ${GPT_TIMESTAMP} ${WORKMBR} add -a 1m -s ${SWAPSECTORS} -t swap 5541.23Sjoerg. endif 5551.23Sjoerg.elif ${USE_MBR} != "no" 5561.1Stsutsui @echo creating MBR labels... 5571.1Stsutsui ${DD} if=/dev/zero of=${WORKMBR} seek=$$((${IMAGESECTORS} - 1)) count=1 5581.24Stsutsui. if ${FATSECTORS} != 0 5591.24Stsutsui # create BSD partition 5601.24Stsutsui ${TOOL_FDISK} -f -i -u \ 5611.24Stsutsui -b ${MBRCYLINDERS}/${MBRHEADS}/${MBRSECTORS} \ 5621.24Stsutsui -1 -a -s ${MBRNETBSD}/${FSOFFSET}/${BSDPARTSECTORS} \ 5631.24Stsutsui -F ${WORKMBR} 5641.24Stsutsui # create FAT partition 5651.24Stsutsui ${TOOL_FDISK} -f -u \ 5661.24Stsutsui -b ${MBRCYLINDERS}/${MBRHEADS}/${MBRSECTORS} \ 5671.24Stsutsui -0 -s ${MBRFAT}/${FATOFFSET}/${FATSECTORS} \ 5681.24Stsutsui -F ${WORKMBR} 5691.24Stsutsui. else 5701.24Stsutsui # create BSD partition 5711.5Stsutsui ${TOOL_FDISK} -f -i -u \ 5721.1Stsutsui -b ${MBRCYLINDERS}/${MBRHEADS}/${MBRSECTORS} \ 5731.1Stsutsui -0 -a -s ${MBRNETBSD}/${FSOFFSET}/${BSDPARTSECTORS} \ 5741.1Stsutsui -F ${WORKMBR} 5751.24Stsutsui. endif 5761.23Sjoerg. if empty(MBR_BOOTCODE) 5771.5Stsutsui @if [ -f ${WORKDIR}/usr/mdec/${MBR_DEFAULT_BOOTCODE} ]; then \ 5781.5Stsutsui echo ${TOOL_FDISK} -f \ 5791.5Stsutsui -i -c ${WORKDIR}/usr/mdec/${MBR_DEFAULT_BOOTCODE} \ 5801.5Stsutsui -F ${WORKMBR}; \ 5811.5Stsutsui ${TOOL_FDISK} -f \ 5821.5Stsutsui -i -c ${WORKDIR}/usr/mdec/${MBR_DEFAULT_BOOTCODE} \ 5831.5Stsutsui -F ${WORKMBR}; \ 5841.5Stsutsui fi 5851.23Sjoerg. else 5861.5Stsutsui @if [ ! -f ${WORKDIR}/usr/mdec/${MBR_BOOTCODE} ]; then \ 5871.5Stsutsui echo "${MBR_BOOTCODE} is not found in DESTDIR/usr/mdec, aborting"; \ 5881.5Stsutsui false; \ 5891.5Stsutsui fi 5901.5Stsutsui ${TOOL_FDISK} -f -i -c ${WORKDIR}/usr/mdec/${MBR_BOOTCODE} \ 5911.5Stsutsui -F ${WORKMBR} 5921.23Sjoerg. endif 5931.5Stsutsui.endif 5941.23Sjoerg 5951.23Sjoerg${WORKGPT}: ${WORKMBR} 5961.23Sjoerg @echo create GPT image... 5971.32Stsutsui ${DD} if=${WORKMBR} of=${WORKGPT} \ 5981.32Stsutsui skip=$$((${IMAGESECTORS} - ${GPTSECTORS})) count=${GPTSECTORS} 5991.23Sjoerg 6001.23Sjoerg.if ${USE_GPT} == "no" 6011.23Sjoerg${IMGBASE}.img: ${WORKLABEL} 6021.1Stsutsui.endif 6031.23Sjoerg 6041.23Sjoerg${IMGBASE}.img: ${TARGET_BLOCKS} 6051.23Sjoerg ${CAT} ${TARGET_BLOCKS} > ${WORKIMG} 6061.23Sjoerg.if ${USE_GPT} != "no" 6071.25Sjmcneill.if ${USE_GPTMBR} != "no" 6081.33Schristos ${TOOL_GPT} ${GPT_TIMESTAMP} ${WORKIMG} biosboot -i 2 \ 6091.23Sjoerg -c ${.OBJDIR}/${WORKDIR}/usr/mdec/gptmbr.bin 6101.25Sjmcneill.endif 6111.33Schristos ${TOOL_GPT} ${GPT_TIMESTAMP} ${WORKIMG} set -a bootme -i 2 6121.23Sjoerg.endif # USE_GPT != "no" 6131.1Stsutsui.if ${USE_SUNLABEL} != "no" 6141.1Stsutsui @echo Creating sun disklabel... 6151.1Stsutsui printf 'V ncyl %d\nV nhead %d\nV nsect %d\na %d %d/0/0\nb %d %d/0/0\nW\n' \ 6161.1Stsutsui ${CYLINDERS} ${HEADS} ${SECTORS} \ 6171.1Stsutsui ${FSOFFSET} ${FSCYLINDERS} ${FSCYLINDERS} ${SWAPCYLINDERS} | \ 6181.1Stsutsui ${TOOL_SUNLABEL} -nq ${WORKIMG} 6191.1Stsutsui.endif 6201.23Sjoerg.if ${USE_GPT} == "no" 6211.1Stsutsui ${TOOL_DISKLABEL} -R -F ${WORKIMG} ${WORKLABEL} 6221.1Stsutsui.if !empty(PRIMARY_BOOT) && ${INSTALLBOOT_AFTER_DISKLABEL} != "no" 6231.11Sriastrad ${TOOL_INSTALLBOOT} -v -m ${MACHINE} ${INSTALLBOOTOPTIONS} ${WORKIMG} \ 6241.1Stsutsui ${WORKDIR}/usr/mdec/${PRIMARY_BOOT} 6251.1Stsutsui.endif 6261.23Sjoerg.endif 6271.1Stsutsui mv ${WORKIMG} ${.TARGET} 6281.1Stsutsui 6291.1StsutsuiCLEANFILES+= ${IMGBASE}.img.gz ${IMGBASE}.img.gz.tmp 6301.1Stsutsui 6311.1Stsutsui${IMGBASE}.img.gz: ${IMGBASE}.img 6321.9Sapb ${TOOL_GZIP_N} -9c ${IMGBASE}.img > ${.TARGET}.tmp 6331.1Stsutsui mv ${.TARGET}.tmp ${.TARGET} 6341.1Stsutsui 6351.1Stsutsuiclean: 6361.1Stsutsui @if [ -d ${WORKDIR}/var/spool/ftp/hidden ]; then \ 6371.1Stsutsui ${CHMOD} +r ${WORKDIR}/var/spool/ftp/hidden; \ 6381.1Stsutsui fi # XXX 6391.1Stsutsui ${RM} -fr ${WORKDIR} 6401.23Sjoerg ${RM} -fr ${EFIWORKDIR} 6411.24Stsutsui ${RM} -fr ${WORKFATDIR} 6421.1Stsutsui 6431.1Stsutsuiprepare_md_post: .PHONY 6441.1Stsutsuiimage_md_post: .PHONY 6451.1Stsutsuiimage_md_pre: .PHONY 6461.1Stsutsui 6471.1Stsutsui.include <bsd.prog.mk> 648