From 03423e0583057cbe5a16f8439183e2dbc0e8dd7c Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Mon, 9 Dec 2019 19:17:24 +0300 Subject: secondary commit --- core/busybox/build | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100755 core/busybox/build (limited to 'core/busybox/build') diff --git a/core/busybox/build b/core/busybox/build new file mode 100755 index 00000000..5625cecb --- /dev/null +++ b/core/busybox/build @@ -0,0 +1,35 @@ +#!/bin/sh -e + +# Build and install regular busybox. +# This excludes utilities which require 'suid' to function. +make CC="${CC:-gcc}" +make CONFIG_PREFIX="$1/usr" install + +# Rename the binary temporarily. +mv "$1/usr/bin/busybox" "$1/usr/bin/busybox-nosuid" + +# Build and install suid busybox. +# This _only_ includes utlities which require 'suid' to function. +cp -f .config-suid .config +make CC="${CC:-gcc}" +make CONFIG_PREFIX="$1/usr" install + +# Aptly name the busybox binaries. +mv "$1/usr/bin/busybox" "$1/usr/bin/busybox-suid" +mv "$1/usr/bin/busybox-nosuid" "$1/usr/bin/busybox" + +# Install the non-suid symlinks. +"$1/usr/bin/busybox" --list | while read -r bin; do + ln -s busybox "$1/usr/bin/$bin" +done + +# Install the suid symlinks. +"$1/usr/bin/busybox-suid" --list | while read -r bin; do + ln -s busybox-suid "$1/usr/bin/$bin" +done + +# Set suid on busybox suid. +chmod u+s "$1/usr/bin/busybox-suid" + +# Install runit services +install -Dm755 acpid.run "$1/etc/sv/acpid/run" -- cgit v1.2.3