iglunix-autobuild/chroot.sh

24 lines
431 B
Bash
Raw Normal View History

2022-04-19 09:32:14 +00:00
#!/bin/sh -e
cd build
2022-04-20 18:03:16 +00:00
# [ -f iglunix/.autobuilt ] || echo "ERROR: you need to run autobuild.sh first"
2022-04-19 09:32:14 +00:00
CHROOT=$(pwd)/chroot
mkdir -p $CHROOT
cex() {
PKGDIR=$1
PKGNAME=$2
tar -xf iglunix/$PKGDIR/$PKGNAME/out/$PKGNAME.*.tar.zst -I zstd -C $CHROOT
}
2022-04-23 10:46:17 +00:00
cex linux limine
cex linux linux
2022-04-19 09:32:14 +00:00
cex linux musl
cex linux busybox
cex base mksh
cex base toybox
2022-04-20 18:03:16 +00:00
cex base compiler-rt
2022-04-19 09:32:14 +00:00
cex base libunwind
cex base libcxx
cex base llvm
2022-04-23 10:46:17 +00:00
cex base oslo