diff options
| author | Alexander Hill <ahill@breadpudding.dev> | 2025-04-13 23:19:31 -0400 |
|---|---|---|
| committer | Alexander Hill <ahill@breadpudding.dev> | 2025-04-13 23:19:31 -0400 |
| commit | 027523b92498501c13bc046be01366f9ad42eb1e (patch) | |
| tree | 2dd2421fec75820fa01c53849f730b54a2ead57b /build-chroot.sh | |
| parent | 22f9b888235b9a96cb1e605c30e5de37178f2a22 (diff) | |
Added cpio
Diffstat (limited to 'build-chroot.sh')
| -rwxr-xr-x | build-chroot.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/build-chroot.sh b/build-chroot.sh index 7dbaa73..3c0f051 100755 --- a/build-chroot.sh +++ b/build-chroot.sh @@ -36,6 +36,20 @@ make CC=clang make install CC=clang PREFIX=/usr cd .. +# cpio Build +tar xf ../sources/cpio-*.tar* +cd cpio-*/ +./configure \ + --disable-nls \ + --exec-prefix="" \ + --libexecdir=/lib \ + --localstatedir=/var \ + --prefix=/usr \ + --sysconfdir=/etc +make -j $THREADS +make -j $THREADS install +cd .. + # libarchive Build tar xf ../sources/libarchive-*.tar* cd libarchive-*/ |
