maketars revision 1.98 1 1.2 gwr #!/bin/sh
2 1.2 gwr #
3 1.98 christos # $NetBSD: maketars,v 1.98 2023/11/08 13:02:47 christos Exp $
4 1.2 gwr #
5 1.2 gwr # Make release tar files for some or all lists. Usage:
6 1.34 lukem # maketars [-b] [-x] [-i installdir] [-a arch] [-m machine] [-s setsdir]
7 1.81 martin # [-M metalog] [-N etcdir] [-F setlistsdir] [-d destdir]
8 1.83 martin # [-t tardir] [-U] [setname ...]
9 1.35 lukem #
10 1.93 maya # The default sets are "base comp debug dtb etc games gpufw man misc rescue tests text"
11 1.76 christos # The X sets are "xbase xcomp xdebug xetc xfont xserver"
12 1.35 lukem #
13 1.35 lukem # If '-i installdir' is given, copy the given sets to installdir
14 1.35 lukem # (using pax -rw ...) instead of creating tar files.
15 1.94 lukem # In this case, remove "etc", and "xetc" from the list of default sets.
16 1.2 gwr #
17 1.2 gwr
18 1.58 apb prog="${0##*/}"
19 1.56 apb rundir="$(dirname "$0")" # ${0%/*} isn't good enough when there's no "/"
20 1.56 apb . "${rundir}/sets.subr"
21 1.41 lukem
22 1.2 gwr # set defaults
23 1.72 cegger lists=
24 1.58 apb tars="${RELEASEDIR}"
25 1.58 apb dest="${DESTDIR}"
26 1.18 lukem metalog=
27 1.28 lukem installdir=
28 1.30 lukem etcdir=
29 1.81 martin setlistdir=
30 1.85 christos timestamp=
31 1.50 lukem setfilesonly=false
32 1.64 lukem quiet=false
33 1.83 martin preserve="-pe"
34 1.2 gwr
35 1.95 lukem # mtree(8) keys to skip (exclude) in the generated /etc/mtree/sets.* files.
36 1.95 lukem # Note: sets contain sha256 so that keyword is not listed here.
37 1.95 lukem skipkeys=cksum,md5,rmd160,sha1,sha384,sha512,time
38 1.95 lukem
39 1.47 lukem usage()
40 1.47 lukem {
41 1.47 lukem cat 1>&2 <<USAGE
42 1.94 lukem Usage: ${prog} [-L base,x] [-b] [-x] [-i idir] [-a arch] [-m machine]
43 1.81 martin [-s setsdir] [-S] [-M metalog] [-N etcdir] [-F setlistdir]
44 1.81 martin [-d dest] [-t targetdir] [setname ...]
45 1.94 lukem -L base,x Make specified lists
46 1.50 lukem -b Make both netbsd and x11 lists
47 1.50 lukem -x Only make x11 lists
48 1.50 lukem [Default: make netbsd lists]
49 1.50 lukem -i idir Install sets to idir instead of creating tar files
50 1.58 apb -a arch Set arch (e.g, m68k, mipseb, mipsel, powerpc) [${MACHINE_ARCH}]
51 1.58 apb -m machine Set machine (e.g, amiga, i386, macppc) [${MACHINE}]
52 1.64 lukem -q Quiet operation
53 1.58 apb -s setsdir Directory to find sets [${setsdir}]
54 1.81 martin -F setlistdir output directory for generated set lists [${dest}/etc/mtree/]
55 1.58 apb -S Exit after creating set files ${dest}/etc/mtree/set.*
56 1.18 lukem -M metalog metalog file
57 1.58 apb -N etcdir etc dir for metalog use [${dest}/etc]
58 1.83 martin -U do not preserve file permissions (with -i ..)
59 1.58 apb -d dest \${DESTDIR} [${dest}]
60 1.58 apb -t targetdir \${RELEASEDIR} [${tars}]
61 1.85 christos -T timestamp Timestamp to set for all the files in the tar.
62 1.58 apb [setname ...] Sets to build [${lists}]
63 1.9 lukem USAGE
64 1.47 lukem exit 1
65 1.47 lukem }
66 1.47 lukem
67 1.64 lukem msg()
68 1.64 lukem {
69 1.64 lukem $quiet || echo $*
70 1.64 lukem }
71 1.64 lukem
72 1.98 christos umask 022
73 1.47 lukem # handle args
74 1.94 lukem while getopts L:bxi:a:m:qs:F:SM:N:Ud:t:T: ch; do
75 1.47 lukem case ${ch} in
76 1.70 uebayasi L)
77 1.72 cegger save_IFS="${IFS}"
78 1.72 cegger IFS=,
79 1.72 cegger for _list in ${OPTARG}; do
80 1.72 cegger case $_list in
81 1.72 cegger base) lists="${lists} ${nlists}" ;;
82 1.72 cegger x) lists="${lists} ${xlists}" ;;
83 1.72 cegger esac
84 1.72 cegger done
85 1.72 cegger IFS="${save_IFS}"
86 1.70 uebayasi ;;
87 1.70 uebayasi # backward compat
88 1.47 lukem b)
89 1.58 apb lists="${nlists} ${xlists}"
90 1.47 lukem ;;
91 1.47 lukem x)
92 1.58 apb lists="${xlists}"
93 1.47 lukem ;;
94 1.47 lukem i)
95 1.58 apb installdir="${OPTARG}"
96 1.47 lukem ;;
97 1.47 lukem a)
98 1.58 apb MACHINE_ARCH="${OPTARG}"
99 1.58 apb MACHINE_CPU="$(arch_to_cpu "${OPTARG}")"
100 1.47 lukem ;;
101 1.47 lukem m)
102 1.58 apb MACHINE="${OPTARG}"
103 1.47 lukem ;;
104 1.64 lukem q)
105 1.64 lukem quiet=true
106 1.64 lukem ;;
107 1.47 lukem s)
108 1.58 apb setsdir="${OPTARG}"
109 1.47 lukem ;;
110 1.81 martin F)
111 1.81 martin setlistdir="${OPTARG}"
112 1.81 martin ;;
113 1.50 lukem S)
114 1.50 lukem setfilesonly=true
115 1.50 lukem ;;
116 1.47 lukem M)
117 1.58 apb metalog="${OPTARG}"
118 1.47 lukem ;;
119 1.47 lukem N)
120 1.58 apb etcdir="${OPTARG}"
121 1.47 lukem ;;
122 1.83 martin U)
123 1.84 martin preserve=
124 1.83 martin ;;
125 1.47 lukem d)
126 1.58 apb dest="${OPTARG}"
127 1.47 lukem ;;
128 1.47 lukem t)
129 1.58 apb tars="${OPTARG}"
130 1.9 lukem ;;
131 1.85 christos T)
132 1.85 christos timestamp="--timestamp $OPTARG"
133 1.85 christos ;;
134 1.9 lukem *)
135 1.47 lukem usage
136 1.9 lukem ;;
137 1.2 gwr esac
138 1.2 gwr done
139 1.47 lukem shift $((${OPTIND} - 1))
140 1.94 lukem if [ -n "${installdir}" ]; then # if -i, remove etc + xetc from the default list
141 1.94 lukem lists="$(echo ${lists} | ${SED} -e 's/ etc / /;s/ xetc / /;')"
142 1.28 lukem fi
143 1.10 ross if [ -n "$*" ]; then
144 1.10 ross lists="$*"
145 1.9 lukem fi
146 1.1 cgd
147 1.58 apb if [ -z "${tars}" -a -z "${installdir}" ]; then
148 1.60 apb echo >&2 "${prog}: \${RELEASEDIR} must be set, or -i must be used"
149 1.1 cgd exit 1
150 1.9 lukem fi
151 1.1 cgd
152 1.58 apb if [ -z "${dest}" ]; then
153 1.60 apb echo >&2 "${prog}: \${DESTDIR} must be set"
154 1.1 cgd exit 1
155 1.9 lukem fi
156 1.58 apb : ${etcdir:="${dest}/etc"}
157 1.1 cgd
158 1.58 apb SDIR="$(${MKTEMP} -d "/tmp/${prog}.XXXXXX")"
159 1.63 lukem TMPFILES=
160 1.20 bjh21
161 1.81 martin : ${setlistdir:="${dest}/etc/mtree"}
162 1.50 lukem
163 1.38 erh cleanup()
164 1.38 erh {
165 1.44 dsl es=$?
166 1.92 christos rm -rf "${SDIR}" ${TMPFILES}
167 1.63 lukem trap - 0
168 1.58 apb exit ${es}
169 1.38 erh }
170 1.38 erh trap cleanup 0 2 3 13 # EXIT INT QUIT PIPE
171 1.18 lukem
172 1.50 lukem #
173 1.50 lukem # build the setfiles
174 1.50 lukem #
175 1.50 lukem
176 1.58 apb for setname in ${lists}; do
177 1.96 lukem msg "Creating flist.${setname}"
178 1.58 apb ${HOST_SH} "${setsdir}/makeflist" -a "${MACHINE_ARCH}" -m "${MACHINE}" \
179 1.69 apb -s "${setsdir}" "${setname}" > "${SDIR}/flist.${setname}" \
180 1.69 apb || exit 1
181 1.73 uebayasi if [ ! -s "${SDIR}/flist.${setname}" ]; then
182 1.71 apb echo >&2 "makeflist output is empty for ${setname}"
183 1.71 apb exit 1
184 1.71 apb fi
185 1.96 lukem msg "Creating set.${setname}"
186 1.58 apb if [ -n "${metalog}" ]; then
187 1.58 apb ${AWK} -f "${rundir}/getdirs.awk" "${SDIR}/flist.${setname}" \
188 1.69 apb > "${SDIR}/flist.${setname}.full" \
189 1.69 apb || exit 1
190 1.23 lukem (
191 1.23 lukem echo "/set uname=root gname=wheel"
192 1.58 apb ${AWK} -f "${rundir}/join.awk" \
193 1.68 apb "${SDIR}/flist.${setname}.full" "${metalog}"
194 1.50 lukem echo "./etc/mtree/set.${setname} type=file mode=0444"
195 1.77 christos ) | ${MTREE} -CS -k all -R "${skipkeys}" -N "${etcdir}" \
196 1.69 apb > "${setlistdir}/set.${setname}" \
197 1.69 apb || exit 1
198 1.59 apb # We deliberately do not add set.${setname} to ${metalog},
199 1.59 apb # because we depend on it as an input.
200 1.77 christos else
201 1.78 christos ${MTREE} -c -p "${dest}" -k all -R "${skipkeys}" \
202 1.86 jklos -N "${etcdir}" -O "${SDIR}/flist.${setname}" \
203 1.86 jklos | ${MTREE} -C -k all -N "${etcdir}" \
204 1.86 jklos > "${setlistdir}/set.${setname}"
205 1.18 lukem fi
206 1.50 lukem done
207 1.58 apb if ${setfilesonly}; then # exit after creating the set lists
208 1.50 lukem exit 0
209 1.50 lukem fi
210 1.18 lukem
211 1.78 christos runpax() {
212 1.78 christos local s="$1"
213 1.78 christos shift
214 1.80 christos (cd "${dest}" &&
215 1.85 christos ${PAX} -dOw ${timestamp} -N"${etcdir}" -M "$@" < "${setlistdir}/set.${s}")
216 1.78 christos }
217 1.78 christos
218 1.50 lukem #
219 1.50 lukem # now build the tarfiles
220 1.50 lukem #
221 1.50 lukem
222 1.67 perry GZIP=-9n # for pax -z
223 1.50 lukem export GZIP
224 1.50 lukem es=0
225 1.82 martin
226 1.72 cegger for setname in ${lists:-${nlists}}; do
227 1.89 martin out="${setname}.${TAR_SUFF:-tgz}"
228 1.58 apb if [ -n "${installdir}" ]; then
229 1.64 lukem msg "Copying set ${setname}"
230 1.82 martin runpax "${setname}" -r ${preserve} "${installdir}"
231 1.28 lukem else
232 1.58 apb if [ -n "${metalog}" -a "${tars}/${out}" -nt "${metalog}" ]
233 1.58 apb then
234 1.64 lukem msg "${out} is up to date"
235 1.50 lukem continue
236 1.50 lukem fi
237 1.64 lukem msg "Creating ${out}"
238 1.58 apb rm -f "${tars}/${out}"
239 1.63 lukem TMPFILES="${TMPFILES} ${tars}/${out}.tmp"
240 1.88 martin runpax "${setname}" -z --use-compress-program \
241 1.88 martin ${COMPRESS_PROGRAM} > "${tars}/${out}.tmp" &&
242 1.58 apb mv "${tars}/${out}.tmp" "${tars}/${out}"
243 1.28 lukem fi
244 1.58 apb es=$((${es} + $?))
245 1.2 gwr done
246 1.61 apb if [ ${es} -gt 255 ]; then
247 1.38 erh es=255
248 1.38 erh fi
249 1.58 apb exit ${es}
250