1999-04-01 06:58:02 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Example script to use with slink_cd - this will create trees for
|
1999-07-24 23:02:14 +00:00
|
|
|
# i386, m68k, sparc, alpha and powerpc.
|
1999-04-01 06:58:02 +00:00
|
|
|
# (c) Steve McIntyre 11 Feb 1999, released under GPL
|
|
|
|
|
1999-07-24 23:02:14 +00:00
|
|
|
for ARCH in alpha i386 m68k powerpc sparc
|
1999-04-01 06:58:02 +00:00
|
|
|
do
|
1999-07-24 23:02:14 +00:00
|
|
|
echo TDIR=/debian/local/debiancd-$ARCH OUT=/debian/local/OUT-$ARCH \
|
1999-04-01 06:58:02 +00:00
|
|
|
MIRROR=/debian NONUS=/debian/Debian-non-US \
|
1999-07-24 23:02:14 +00:00
|
|
|
./debian_cd \
|
1999-04-01 06:58:02 +00:00
|
|
|
clean genlist tree flatten md5check packages boot \
|
|
|
|
extras $ARCH md5list images imagesums
|
|
|
|
|
1999-07-24 23:02:14 +00:00
|
|
|
TDIR=/debian/local/debiancd-$ARCH OUT=/debian/local/OUT-$ARCH \
|
1999-04-01 06:58:02 +00:00
|
|
|
MIRROR=/debian NONUS=/debian/Debian-non-US \
|
|
|
|
BOOTDIR=/usr/lib/silo \
|
1999-07-24 23:02:14 +00:00
|
|
|
./debian_cd \
|
1999-04-01 06:58:02 +00:00
|
|
|
clean genlist tree flatten md5check packages boot \
|
|
|
|
extras $ARCH md5list images imagesums
|
|
|
|
done
|
|
|
|
|
|
|
|
|