This commit is contained in:
Your Name 2023-12-26 13:36:10 +03:00
parent 228b27ece1
commit 9126921467
6 changed files with 16 additions and 8 deletions

View file

@ -3,11 +3,11 @@ mu_repo="https://git.macaw.me/8nl/micro-utils"
ml_repo="git://git.musl-libc.org/musl"
cc_repo="git://repo.or.cz/tinycc.git"
echo "* Download micro-utils sources..."
echo "* Download micro-utils sources..." >&2
git clone $mu_repo src
echo "* Download musl sources..."
echo "* Download musl sources..." >&2
git clone $ml_repo libc
echo "* Download tcc sources..."
echo "* Download tcc sources..." >&2
git clone $cc_repo tcc

View file

@ -1,5 +1,5 @@
#!/bin/sh
echo "* Build musl libc"
echo "* Build musl libc" >&2
cd libc

View file

@ -18,7 +18,7 @@ mv bin/* $RTFS/bin
#Install configs
mkdir $RTFS/etc
mv configs/* $RTFS/etc
echo " * You need to edit config files in /etc"
echo " * You need to edit config files in /etc" >&2
#Install init system
mv $RTFS/bin/init $RTFS/init

View file

@ -1,5 +1,5 @@
#!/bin/sh
echo "* Build host compiler"
echo "* Build host compiler" >&2
cd tcc

4
stages/99-cleanup.sh Executable file
View file

@ -0,0 +1,4 @@
#!/bin/sh
rm -rf $RTFS/share
rm -rf libc src tcc