setup script
authorPaul J R <me@pjr.cc>
Sat, 24 Aug 2013 02:04:09 +0000 (12:04 +1000)
committerPaul J R <me@pjr.cc>
Sat, 24 Aug 2013 02:04:09 +0000 (12:04 +1000)
setup_build.sh [new file with mode: 0755]

diff --git a/setup_build.sh b/setup_build.sh
new file mode 100755 (executable)
index 0000000..ed7b075
--- /dev/null
@@ -0,0 +1,20 @@
+#!/bin/sh
+
+rm -rf src src_arch > /dev/null 2>&1
+mkdir src > /dev/null 2>&1
+cd src
+
+echo "Setting up linux kernel src"
+tar xfJ ../src_arch/linux-3.10.9.tar.xz
+echo "..... done"
+
+echo "Setting up syslinux src"
+tar xfJ ../src_arch/syslinux-5.10.tar.xz
+echo "..... done"
+
+echo "Setting up buildroot"
+tar xfz ../src_arch/buildroot-2013.05.tar.gz
+echo "..... done"
+
+echo "You now need to do a \"git reset --hard\" then \"sh makeitall\""
+