maketars revision 1.95 1 1.2 gwr #!/bin/sh
2 1.2 gwr #
3 1.95 lukem # $NetBSD: maketars,v 1.95 2023/06/10 14:11:08 lukem 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.47 lukem # handle args
73 1.94 lukem while getopts L:bxi:a:m:qs:F:SM:N:Ud:t:T: ch; do
74 1.47 lukem case ${ch} in
75 1.70 uebayasi L)
76 1.72 cegger save_IFS="${IFS}"
77 1.72 cegger IFS=,
78 1.72 cegger for _list in ${OPTARG}; do
79 1.72 cegger case $_list in
80 1.72 cegger base) lists="${lists} ${nlists}" ;;
81 1.72 cegger x) lists="${lists} ${xlists}" ;;
82 1.72 cegger esac
83 1.72 cegger done
84 1.72 cegger IFS="${save_IFS}"
85 1.70 uebayasi ;;
86 1.70 uebayasi # backward compat
87 1.47 lukem b)
88 1.58 apb lists="${nlists} ${xlists}"
89 1.47 lukem ;;
90 1.47 lukem x)
91 1.58 apb lists="${xlists}"
92 1.47 lukem ;;
93 1.47 lukem i)
94 1.58 apb installdir="${OPTARG}"
95 1.47 lukem ;;
96 1.47 lukem a)
97 1.58 apb MACHINE_ARCH="${OPTARG}"
98 1.58 apb MACHINE_CPU="$(arch_to_cpu "${OPTARG}")"
99 1.47 lukem ;;
100 1.47 lukem m)
101 1.58 apb MACHINE="${OPTARG}"
102 1.47 lukem ;;
103 1.64 lukem q)
104 1.64 lukem quiet=true
105 1.64 lukem ;;
106 1.47 lukem s)
107 1.58 apb setsdir="${OPTARG}"
108 1.47 lukem ;;
109 1.81 martin F)
110 1.81 martin setlistdir="${OPTARG}"
111 1.81 martin ;;
112 1.50 lukem S)
113 1.50 lukem setfilesonly=true
114 1.50 lukem ;;
115 1.47 lukem M)
116 1.58 apb metalog="${OPTARG}"
117 1.47 lukem ;;
118 1.47 lukem N)
119 1.58 apb etcdir="${OPTARG}"
120 1.47 lukem ;;
121 1.83 martin U)
122 1.84 martin preserve=
123 1.83 martin ;;
124 1.47 lukem d)
125 1.58 apb dest="${OPTARG}"
126 1.47 lukem ;;
127 1.47 lukem t)
128 1.58 apb tars="${OPTARG}"
129 1.9 lukem ;;
130 1.85 christos T)
131 1.85 christos timestamp="--timestamp $OPTARG"
132 1.85 christos ;;
133 1.9 lukem *)
134 1.47 lukem usage
135 1.9 lukem ;;
136 1.2 gwr esac
137 1.2 gwr done
138 1.47 lukem shift $((${OPTIND} - 1))
139 1.94 lukem if [ -n "${installdir}" ]; then # if -i, remove etc + xetc from the default list
140 1.94 lukem lists="$(echo ${lists} | ${SED} -e 's/ etc / /;s/ xetc / /;')"
141 1.28 lukem fi
142 1.10 ross if [ -n "$*" ]; then
143 1.10 ross lists="$*"
144 1.9 lukem fi
145 1.1 cgd
146 1.58 apb if [ -z "${tars}" -a -z "${installdir}" ]; then
147 1.60 apb echo >&2 "${prog}: \${RELEASEDIR} must be set, or -i must be used"
148 1.1 cgd exit 1
149 1.9 lukem fi
150 1.1 cgd
151 1.58 apb if [ -z "${dest}" ]; then
152 1.60 apb echo >&2 "${prog}: \${DESTDIR} must be set"
153 1.1 cgd exit 1
154 1.9 lukem fi
155 1.58 apb : ${etcdir:="${dest}/etc"}
156 1.1 cgd
157 1.58 apb SDIR="$(${MKTEMP} -d "/tmp/${prog}.XXXXXX")"
158 1.63 lukem TMPFILES=
159 1.20 bjh21
160 1.81 martin : ${setlistdir:="${dest}/etc/mtree"}
161 1.50 lukem
162 1.38 erh cleanup()
163 1.38 erh {
164 1.44 dsl es=$?
165 1.92 christos rm -rf "${SDIR}" ${TMPFILES}
166 1.63 lukem trap - 0
167 1.58 apb exit ${es}
168 1.38 erh }
169 1.38 erh trap cleanup 0 2 3 13 # EXIT INT QUIT PIPE
170 1.18 lukem
171 1.50 lukem #
172 1.50 lukem # build the setfiles
173 1.50 lukem #
174 1.50 lukem
175 1.58 apb for setname in ${lists}; do
176 1.58 apb ${HOST_SH} "${setsdir}/makeflist" -a "${MACHINE_ARCH}" -m "${MACHINE}" \
177 1.69 apb -s "${setsdir}" "${setname}" > "${SDIR}/flist.${setname}" \
178 1.69 apb || exit 1
179 1.73 uebayasi if [ ! -s "${SDIR}/flist.${setname}" ]; then
180 1.71 apb echo >&2 "makeflist output is empty for ${setname}"
181 1.71 apb exit 1
182 1.71 apb fi
183 1.77 christos ${setfilesonly} && msg "Creating ${setlistdir}/set.${setname}"
184 1.58 apb if [ -n "${metalog}" ]; then
185 1.58 apb ${AWK} -f "${rundir}/getdirs.awk" "${SDIR}/flist.${setname}" \
186 1.69 apb > "${SDIR}/flist.${setname}.full" \
187 1.69 apb || exit 1
188 1.23 lukem (
189 1.23 lukem echo "/set uname=root gname=wheel"
190 1.58 apb ${AWK} -f "${rundir}/join.awk" \
191 1.68 apb "${SDIR}/flist.${setname}.full" "${metalog}"
192 1.50 lukem echo "./etc/mtree/set.${setname} type=file mode=0444"
193 1.77 christos ) | ${MTREE} -CS -k all -R "${skipkeys}" -N "${etcdir}" \
194 1.69 apb > "${setlistdir}/set.${setname}" \
195 1.69 apb || exit 1
196 1.59 apb # We deliberately do not add set.${setname} to ${metalog},
197 1.59 apb # because we depend on it as an input.
198 1.77 christos else
199 1.78 christos ${MTREE} -c -p "${dest}" -k all -R "${skipkeys}" \
200 1.86 jklos -N "${etcdir}" -O "${SDIR}/flist.${setname}" \
201 1.86 jklos | ${MTREE} -C -k all -N "${etcdir}" \
202 1.86 jklos > "${setlistdir}/set.${setname}"
203 1.18 lukem fi
204 1.50 lukem done
205 1.58 apb if ${setfilesonly}; then # exit after creating the set lists
206 1.50 lukem exit 0
207 1.50 lukem fi
208 1.18 lukem
209 1.78 christos runpax() {
210 1.78 christos local s="$1"
211 1.78 christos shift
212 1.80 christos (cd "${dest}" &&
213 1.85 christos ${PAX} -dOw ${timestamp} -N"${etcdir}" -M "$@" < "${setlistdir}/set.${s}")
214 1.78 christos }
215 1.78 christos
216 1.50 lukem #
217 1.50 lukem # now build the tarfiles
218 1.50 lukem #
219 1.50 lukem
220 1.67 perry GZIP=-9n # for pax -z
221 1.50 lukem export GZIP
222 1.50 lukem es=0
223 1.82 martin
224 1.72 cegger for setname in ${lists:-${nlists}}; do
225 1.89 martin out="${setname}.${TAR_SUFF:-tgz}"
226 1.58 apb if [ -n "${installdir}" ]; then
227 1.64 lukem msg "Copying set ${setname}"
228 1.82 martin runpax "${setname}" -r ${preserve} "${installdir}"
229 1.28 lukem else
230 1.58 apb if [ -n "${metalog}" -a "${tars}/${out}" -nt "${metalog}" ]
231 1.58 apb then
232 1.64 lukem msg "${out} is up to date"
233 1.50 lukem continue
234 1.50 lukem fi
235 1.64 lukem msg "Creating ${out}"
236 1.58 apb rm -f "${tars}/${out}"
237 1.63 lukem TMPFILES="${TMPFILES} ${tars}/${out}.tmp"
238 1.88 martin runpax "${setname}" -z --use-compress-program \
239 1.88 martin ${COMPRESS_PROGRAM} > "${tars}/${out}.tmp" &&
240 1.58 apb mv "${tars}/${out}.tmp" "${tars}/${out}"
241 1.28 lukem fi
242 1.58 apb es=$((${es} + $?))
243 1.2 gwr done
244 1.61 apb if [ ${es} -gt 255 ]; then
245 1.38 erh es=255
246 1.38 erh fi
247 1.58 apb exit ${es}
248