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:
@@ -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 -
|
||||
|
||||
|
||||
Reference in New Issue
Block a user