mirror of
https://github.com/hexagonal-sun/moss-kernel.git
synced 2025-12-23 22:47:55 -05:00
12 lines
457 B
Bash
Executable File
12 lines
457 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# busybox -- I couldn't get this to build. I ended up restoring to a third-party static binary which isn't ideal but it get's things running.
|
|
pushd "build" &>/dev/null || exit 1
|
|
wget https://github.com/shutingrz/busybox-static-binaries-fat/raw/refs/heads/main/busybox-aarch64-linux-gnu
|
|
chmod +x busybox-aarch64-linux-gnu
|
|
mv busybox-aarch64-linux-gnu bin/busybox
|
|
|
|
popd &>/dev/null || exit 1
|
|
|
|
popd &>/dev/null || exit 1 |