summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Maw <jonathan.maw@codethink.co.uk>2013-05-23 16:29:10 +0100
committerJonathan Maw <jonathan.maw@codethink.co.uk>2013-05-23 16:29:10 +0100
commit1cbc106c4859797c1f04661e9f88d99b3ce9e52f (patch)
treebed7f6b304800b23095b884aa96693ce2bfb9003
parentfa554ceb7121b96bf0cd94953bc4cfa4636e102c (diff)
downloadgenivi-initial-setup-1cbc106c4859797c1f04661e9f88d99b3ce9e52f.tar.gz
Remove arm system-setup because it's been obsoleted by configuration-extensions
-rwxr-xr-xarmv7-versatile/arm-devel-system-setup43
1 files changed, 0 insertions, 43 deletions
diff --git a/armv7-versatile/arm-devel-system-setup b/armv7-versatile/arm-devel-system-setup
deleted file mode 100755
index 2f5ce3a..0000000
--- a/armv7-versatile/arm-devel-system-setup
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/bin/sh
-
-set -e
-
-#Ensure the root partition is as large as it can be, because we may
-#have enlarged the disk image
-btrfs filesystem resize max /
-
-#Ensure the /src directory exists
-mkdir -p /src
-
-#Retrieve the staging-filler
-if [ -e /src/staging-filler ]
-then
- cd /src/staging-filler
- git pull origin master
- cd -
-else
- git clone ssh://git@trove.genivi.baserock.com/ct/genivi/genivi-staging-fillers-armv7 /src/staging-filler
-fi
-
-#Ensure the cache and temp directories exist
-mkdir -p /src/cache
-mkdir -p /src/tmp
-
-#Create morph.conf
-cat >/src/morph.conf <<EOF
-[config]
-log = /src/morph.log
-cachedir = /src/cache
-tempdir = /src/tmp
-staging-chroot = true
-staging-filler = /src/staging-filler/filler.tar.gz, \
- /src/staging-filler/genivi-filler.tar.gz
-trove-host = trove.genivi.baserock.com
-trove-prefix = ct
-EOF
-
-#Ensure morph uses our morph.conf
-[ -e $HOME/.morph.conf ] && rm $HOME/.morph.conf
-ln -s /src/morph.conf $HOME/.morph.conf
-
-echo "Initial setup complete."