forked from kiss-community/repo
34 lines
1004 B
Bash
Executable File
34 lines
1004 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
make
|
|
make CONFIG_PREFIX="$1" install
|
|
|
|
# Fix package filesystem.
|
|
mv "$1/bin/"* "$1/usr/bin"
|
|
mv "$1/sbin/"* "$1/usr/bin"
|
|
mv "$1/usr/sbin/"* "$1/usr/bin"
|
|
rmdir "$1/bin" "$1/usr/sbin" "$1/sbin"
|
|
|
|
# Install runit services.
|
|
install -Dm755 acpid.run "$1/etc/sv/acpid/run"
|
|
install -Dm755 crond.run "$1/etc/sv/crond/run"
|
|
install -Dm755 syslogd.run "$1/etc/sv/syslogd/run"
|
|
ln -s /run/runit/supervise.acpid "$1/etc/sv/acpid/supervise"
|
|
ln -s /run/runit/supervise.crond "$1/etc/sv/crond/supervise"
|
|
ln -s /run/runit/supervise.syslogd "$1/etc/sv/syslogd/supervise"
|
|
|
|
# Install busybox config.
|
|
install -Dm644 busybox.conf "$1/etc/busybox.conf"
|
|
|
|
# Build and install a statically compiled busybox.
|
|
# This is useful for instances where the system is broken
|
|
# and for making an initramfs.
|
|
#
|
|
# The sleep is required so that 'make' doesn't skip the
|
|
# changes due to its 'mtime' checks.
|
|
make defconfig
|
|
sleep 1
|
|
sed -i'' "s/.*CONFIG_STATIC.*/CONFIG_STATIC=y/" .config
|
|
make
|
|
install -Dm755 busybox "$1/usr/lib/busybox"
|