summaryrefslogtreecommitdiffstats
path: root/remote/modules/busybox/module.build
diff options
context:
space:
mode:
authorJonathan Bauer2014-03-25 15:24:04 +0100
committerJonathan Bauer2014-03-25 15:24:04 +0100
commit3d1235af060955e271be68240c0ca46bc6d81b03 (patch)
treeef02dcc4bb8476cfeef07e2df6a38b4c29d350df /remote/modules/busybox/module.build
parent[rootfs-stage32] /var/log/openslx in tmpfiles.d (diff)
downloadtm-scripts-3d1235af060955e271be68240c0ca46bc6d81b03.tar.gz
tm-scripts-3d1235af060955e271be68240c0ca46bc6d81b03.tar.xz
tm-scripts-3d1235af060955e271be68240c0ca46bc6d81b03.zip
[modules] new module naming convention
rename $MODULE.{conf,build} to module.{conf,build}
Diffstat (limited to 'remote/modules/busybox/module.build')
-rw-r--r--remote/modules/busybox/module.build26
1 files changed, 26 insertions, 0 deletions
diff --git a/remote/modules/busybox/module.build b/remote/modules/busybox/module.build
new file mode 100644
index 00000000..727a334c
--- /dev/null
+++ b/remote/modules/busybox/module.build
@@ -0,0 +1,26 @@
+
+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() {
+ :
+}