summaryrefslogtreecommitdiffstats
path: root/release/scripts/extract_des.sh
diff options
context:
space:
mode:
Diffstat (limited to 'release/scripts/extract_des.sh')
-rw-r--r--release/scripts/extract_des.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/release/scripts/extract_des.sh b/release/scripts/extract_des.sh
new file mode 100644
index 0000000..3eed9d7
--- /dev/null
+++ b/release/scripts/extract_des.sh
@@ -0,0 +1,19 @@
+#!/bin/sh
+# $Id: extract_des.sh,v 1.1 1995/05/09 22:58:42 jkh Exp $
+set -e
+PATH=/stand:$PATH
+DDIR=/
+
+DIST=des
+# You can't write over the running init
+if [ -f /sbin/init ]; then mv /sbin/init /sbin/init.insecure; fi
+
+cat ${DIST}.?? | gzip -c -d | ( cd $DDIR; cpio -H tar -imdu )
+
+DDIR=/usr/src
+for DIST in sebones sdes ; do
+ if [ -f ${DIST}.aa ]; then
+ echo "Extracting ${DIST} sources"
+ cat ${DIST}.?? | gzip -c -d | ( cd $DDIR; cpio -H tar -imdu )
+ fi
+done
OpenPOWER on IntegriCloud