aboutsummaryrefslogtreecommitdiffstats
path: root/preseed.sh
diff options
context:
space:
mode:
Diffstat (limited to 'preseed.sh')
-rwxr-xr-xpreseed.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/preseed.sh b/preseed.sh
index 425f08e..7da9f0d 100755
--- a/preseed.sh
+++ b/preseed.sh
@@ -57,6 +57,12 @@ rsync -aL ./include/ "$isoeditdir/include"/
find ./include \( \! -name '.*' -a -type f \) -print0 | \
xargs -r0 md5sum >> "$isoeditdir/md5sum.txt"
+# non-free firmwares:
+# wget -O - http://cdimage.debian.org/cdimage/unofficial/non-free/firmware/wheezy/current/firmware.tar.gz | tar -C ./firmware -xz
+#rsync -aL ./firmware/ "$isoeditdir/firmware"/
+#find ./firmware \( \! -name '.*' -a -type f \) -print0 | \
+# xargs -r0 md5sum >> "$isoeditdir/md5sum.txt"
+
# XXX: that's ugly
dist=$(for x in "$isoeditdir"/dists/*; do [ -h "$x" ] && continue; [ -d "$x" ] && echo ${x##*/} && break; done)
arch=$(for x in "$isoeditdir/dists/$dist/main"/binary-*; do test -d "$x" && echo ${x##*/binary-} && break; done)