ChibraxOS 2

Changes:
- kernel 6.0.2
- Broken init scripts
- Switch to bun for better peroformance an easier ffi
- Removed grup
- Efi support without graphics (at least graphics werent tested)
- Suppression de toutes les dépendance non libc
- new splash
- broken audio
- typescript support
- ls rewritten to be more reliable
This commit is contained in:
Marc
2022-10-22 13:47:33 +02:00
parent db49f8d205
commit 721c919c7b
76 changed files with 2485 additions and 2665 deletions
+1980 -1538
View File
File diff suppressed because it is too large Load Diff
+8 -6
View File
@@ -4,16 +4,18 @@ then echo "Please don't run this as root"
exit
fi
VER=6.0.2
if [ ! -d src ]
then
wget https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.15.5.tar.xz
wget https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-${VER}.tar.xz
mkdir src
mv linux-5.15.5.tar.xz src/
mv linux-${VER}.tar.xz src/
cd src
tar xf linux-5.15.5.tar.xz
rm linux-5.15.5.tar.xz
mv linux-5.15.5/* .
rm -rf linux-5.15.5
tar xf linux-${VER}.tar.xz
rm linux-${VER}.tar.xz
mv linux-${VER}/* .
rm -rf linux-${VER}
cd -