mkimage revision 1.21
1#!/bin/sh 2# $NetBSD: mkimage,v 1.21 2013/02/09 18:50:11 christos 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_DISKLABEL:-fdisk} 40MAKEFS=${TOOL_MAKEFS:-makefs} 41 42src="/usr/src" 43release="/usr/obj/evbarm/release" 44sets="base comp etc games man misc modules text" 45xsets="xbase xcomp xetc xfont xserver" 46minfree="10%" 47bar="===" 48 49tmp="$(mktemp -d "/tmp/$PROG.XXXXXX")" 50mnt="${tmp}/mnt" 51mkdir -p "${mnt}/etc" "${mnt}/dev" "${mnt}/boot" 52trap "cleanup" 0 1 2 3 15 53 54cleanup() { 55 case "$tmp" in 56 /tmp/$PROG.*) rm -fr "$tmp";; 57 esac 58} 59 60getsize() { 61 set -- $(ls -l $1) 62 echo $5 63} 64 65usage() { 66 cat << EOF 1>&2 67Usage: $PROG -h <host-arch> [-K <kerneldir>] [-S <srcdir>] [-D <destdir>] [-c <custom-files-dir>] [-s <Mb size>] [<image>] 68EOF 69 exit 1 70} 71 72# First pass for options to get the host 73OPTS="K:D:S:c:h:s:x" 74while getopts "$OPTS" f 75do 76 case $f in 77 h) h="$OPTARG";; 78 *) ;; 79 esac 80done 81 82if [ -z "$h" ] 83then 84 usage 85fi 86 87if [ ! -f "${DIR}/conf/${h}.conf" ] 88then 89 echo $PROG: ${DIR}/conf/${h}.conf is not present 1>&2 90 exit 1 91fi 92 93. "${DIR}/conf/${h}.conf" 94 95selected_sets="$sets" 96 97OPTIND=1 98while getopts "$OPTS" f 99do 100 case $f in 101 D) release="$OPTARG";; 102 K) kernel="$OPTARG";; 103 S) src="$OPTARG";; 104 c) custom="$OPTARG";; 105 h) ;; 106 s) size="$OPTARG";; 107 x) selected_sets="$sets $xsets";; 108 *) usage;; 109 esac 110done 111 112trap cleanup 0 1 2 3 15 113 114shift $(( $OPTIND - 1 )) 115if [ -n "$1" ]; then 116 # take the next argument as being the image name 117 image="$1" 118 shift 119fi 120 121echo ${bar} configuring sets ${bar} 122(echo '/set type=dir uname=root gname=wheel mode=0755' 123for i in $selected_sets; do 124 s="${release}/etc/mtree/set.$i" 125 [ -f "$s" ] && cat "$s" 126done) > "$tmp/selected_sets" 127 128make_fstab 129customize 130populate 131 132(cd ${mnt}; mtree -c -k all | mtree -C -k all) >> "$tmp/selected_sets" 133if [ -n ${msdosid} ]; then 134 echo ${bar} Populating msdos filesystem ${bar} 135 ${MAKEFS} -t msdos -O $((${init} / 2))m -s $((${boot} / 2))m \ 136 ${image} ${mnt}/boot 137fi 138 139echo ${bar} Populating ffs filesystem ${bar} 140${MAKEFS} -t ffs -rx -O $(((${init} + ${boot} + ${swap}) / 2))m \ 141 -F "$tmp/selected_sets" ${image} "${release}" "${mnt}" 142 143if [ -z "$size" ]; then 144 size=$(getsize ${image}) 145fi 146newsize=$((size / 2 / 1024)) 147 148echo ${bar} Adding label ${bar} 149make_label > ${tmp}/label 150${DISKLABEL} -R -F ${image} ${tmp}/label 151if [ -n ${msdosid} ]; then 152 echo ${bar} Running fdisk ${bar} 153 ${FDISK} -f -u -0 -s ${msdosid}/${init}/${boot} -F ${image} 154fi 155echo ${bar} Image is ${image} ${bar} 156