summaryrefslogtreecommitdiffstats
path: root/remote/modules/busybox
diff options
context:
space:
mode:
authorJonathan Bauer2014-03-25 16:05:27 +0100
committerJonathan Bauer2014-03-25 16:05:27 +0100
commit249e951ce236e3bbeb32b5a943215524a81f42f2 (patch)
treee7538724066c4a0330f2e6588e956680613bff57 /remote/modules/busybox
parent[consolekit] woops, delete old files (diff)
downloadtm-scripts-249e951ce236e3bbeb32b5a943215524a81f42f2.tar.gz
tm-scripts-249e951ce236e3bbeb32b5a943215524a81f42f2.tar.xz
tm-scripts-249e951ce236e3bbeb32b5a943215524a81f42f2.zip
woopsie, the return ;)
Diffstat (limited to 'remote/modules/busybox')
-rw-r--r--remote/modules/busybox/busybox.build26
-rw-r--r--remote/modules/busybox/busybox.conf9
2 files changed, 0 insertions, 35 deletions
diff --git a/remote/modules/busybox/busybox.build b/remote/modules/busybox/busybox.build
deleted file mode 100644
index 727a334c..00000000
--- a/remote/modules/busybox/busybox.build
+++ /dev/null
@@ -1,26 +0,0 @@
-
-fetch_source() {
- git clone "${REQUIRED_GIT}" src || perror "Could not clone busybox git"
- cd src || perror "Could not cd to src"
- git checkout "$REQUIRED_BRANCH" || perror "Could not checkout requested branch"
- # Patch image centering if not patched yet
- if ! grep -q "bcenter_image" "miscutils/fbsplash.c"; then
- git apply "../fbsplash-center.patch" || perror "Could not apply busybox patch for fbsplash image centering"
- fi
- cd .. || perror "cd .. failed"
-}
-
-build() {
- cp "openslx-busybox-config" "src/.config"
- cd src || perror "Could not cd to src"
- pinfo "Running make (if this hangs, check for unset options, ie. when you increased the REQUIRED_BRANCH)"
- make || perror "failed."
- pinfo "Running make install"
- make CONFIG_PREFIX="$MODULE_BUILD_DIR" install || perror "failed"
- rm "$MODULE_BUILD_DIR/bin/mount" "$MODULE_BUILD_DIR/bin/umount" "$MODULE_BUILD_DIR/bin/bash"
- cd - &> /dev/null
-}
-
-post_copy() {
- :
-}
diff --git a/remote/modules/busybox/busybox.conf b/remote/modules/busybox/busybox.conf
deleted file mode 100644
index d2536ac9..00000000
--- a/remote/modules/busybox/busybox.conf
+++ /dev/null
@@ -1,9 +0,0 @@
-REQUIRED_GIT="git://git.busybox.net/busybox"
-REQUIRED_BRANCH="1_22_1"
-REQUIRED_BINARIES="busybox"
-REQUIRED_DIRECTORIES="
- /bin
- /sbin
- /usr/bin
- /usr/sbin
-"