commit changes

This commit is contained in:
ag-tsotetsi
2026-03-25 14:54:35 +02:00
parent 409517b49f
commit d7cd49e447
22 changed files with 425 additions and 462 deletions

18
stage/toolchain/bash.bash Normal file
View File

@@ -0,0 +1,18 @@
fetch $BASH_URL
cd "$SOURCES" && tar xf bash-$BASH_VERSION.tar.gz && cd bash-$BASH_VERSION
./configure \
--prefix=/usr \
--build=$(sh support/config.guess) \
--host=$TARGET \
--without-bash-malloc \
--silent \
--quiet
make && make DESTDIR="$SYSROOT" install
ln -s bash "$SYSROOT"/bin/sh
cd "$SOURCES" && rm -rf bash-$BASH_VERSION