mkimage revision 1.32
1#!/bin/sh 2# $NetBSD: mkimage,v 1.32 2013/02/10 21:51:05 jmcneill Exp $ 3# 4# Copyright (c) 2013 The NetBSD Foundation, Inc. 5# All rights reserved. 6# 7# This code is derived from software contributed to The NetBSD Foundation 8# by Christos Zoulas. 9# 10# Redistribution and use in source and binary forms, with or without 11# modification, are permitted provided that the following conditions 12# are met: 13# 1. Redistributions of source code must retain the above copyright 14# notice, this list of conditions and the following disclaimer. 15# 2. Redistributions in binary form must reproduce the above copyright 16# notice, this list of conditions and the following disclaimer in the 17# documentation and/or other materials provided with the distribution. 18# 3. Neither the name of The NetBSD Foundation nor the names of its 19# contributors may be used to endorse or promote products derived 20# from this software without specific prior written permission. 21# 22# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 23# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 24# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 25# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 26# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 27# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 28# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 29# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 30# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 31# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 32# POSSIBILITY OF SUCH DAMAGE. 33# 34 35DIR="$(cd "$(dirname "$0")" && pwd)" 36PROG="$(basename "$0")" 37 38DISKLABEL=${TOOL_DISKLABEL:-disklabel} 39FDISK=${TOOL_FDISK:-fdisk} 40MAKEFS=${TOOL_MAKEFS:-makefs} 41MTREE=${TOOL_MTREE:-mtree} 42 43src="/usr/src" 44release="/usr/obj/evbarm/release" 45sets="base comp etc games man misc modules text" 46xsets="xbase xcomp xetc xfont xserver" 47minfree="10%" 48bar="===" 49 50tmp="$(mktemp -d "/tmp/$PROG.XXXXXX")" 51mnt="${tmp}/mnt" 52mkdir -p "${mnt}/etc" "${mnt}/dev" "${mnt}/boot" 53 54trap "cleanup" 0 1 2 3 15 55 56cleanup() { 57 case "$tmp" in 58 /tmp/$PROG.*) rm -fr "$tmp";; 59 esac 60} 61 62getsize() { 63 set -- $(ls -l $1) 64 echo $5 65} 66 67usage() { 68 cat << EOF 1>&2 69Usage: $PROG -h <host-arch> [-K <kerneldir>] [-S <srcdir>] [-D <destdir>] [-c <custom-files-dir>] [-s <Mb size>] [<image>] 70EOF 71 exit 1 72} 73 74# First pass for options to get the host and src directories 75OPTS="K:D:S:c:h:s:x" 76while getopts "$OPTS" f 77do 78 case $f in 79 h) h="$OPTARG";; 80 S) src="$OPTARG";; 81 *) ;; 82 esac 83done 84 85if [ -z "$h" ] 86then 87 usage 88fi 89 90if [ ! -f "${DIR}/conf/${h}.conf" ] 91then 92 echo $PROG: ${DIR}/conf/${h}.conf is not present 1>&2 93 exit 1 94fi 95 96. "${DIR}/conf/${h}.conf" 97 98selected_sets="$sets" 99 100OPTIND=1 101while getopts "$OPTS" f 102do 103 case $f in 104 D) release="$OPTARG";; 105 K) kernel="$OPTARG";; 106 S) ;; 107 c) custom="$OPTARG";; 108 h) ;; 109 s) size="$OPTARG";; 110 x) selected_sets="$sets $xsets";; 111 *) usage;; 112 esac 113done 114 115shift $(( $OPTIND - 1 )) 116if [ -n "$1" ]; then 117 # take the next argument as being the image name 118 image="$1" 119 shift 120fi 121 122case "$image" in 123*.gz) compress=true; image="${image%.gz}";; 124*) compress=false;; 125esac 126 127echo ${bar} configuring sets ${bar} 128(echo '/set type=dir uname=root gname=wheel mode=0755' 129for i in $selected_sets; do 130 s="${release}/etc/mtree/set.$i" 131 [ -f "$s" ] && cat "$s" 132done) > "$tmp/selected_sets" 133 134make_fstab 135customize 136populate 137 138(cd ${mnt}; ${MTREE} -N ${release}/etc -c -k all | 139 ${MTREE} -N ${release}/etc -C -k all) >> "$tmp/selected_sets" 140if [ -n ${msdosid} ]; then 141 echo ${bar} Populating msdos filesystem ${bar} 142 ${MAKEFS} -N ${release}/etc -t msdos \ 143 -O $((${init} / 2))m -s $((${boot} / 2))m ${image} ${mnt}/boot 144fi 145 146echo ${bar} Populating ffs filesystem ${bar} 147${MAKEFS} -N ${release}/etc -t ffs -rx \ 148 -O $(((${init} + ${boot} + ${swap}) / 2))m \ 149 -F "$tmp/selected_sets" ${image} "${release}" "${mnt}" 150 151if [ "${size}" = 0 ]; then 152 size="$(getsize "${image}")" 153fi 154newsize=$((${size} / 2 / 1024)) 155 156echo ${bar} Adding label ${bar} 157make_label > ${tmp}/label 158${DISKLABEL} -R -F ${image} ${tmp}/label 159if [ -n ${msdosid} ]; then 160 echo ${bar} Running fdisk ${bar} 161 initsecs=$((${init} * 1024)) 162 bootsecs=$((${boot} * 1024)) 163 ${FDISK} -f -u -0 -s ${msdosid}/${initsecs}/${bootsecs} -F ${image} 164fi 165 166if $compress; then 167 echo ${bar} Compressing image ${bar} 168 rm -f "${image}.gz" 169 gzip -9 ${image} 170 image="${image}.gz" 171fi 172 173echo ${bar} Image is ${image} ${bar} 174