2024-11-04 21:25:11 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
echo "Pika Kernel - Getting source"
|
|
|
|
|
2024-11-04 21:26:37 +01:00
|
|
|
# wget -nv https://cdn.kernel.org/pub/linux/kernel/v"$(echo $(cat ./VERSION) | cut -f1 -d".")".x/linux-"$(cat ./VERSION)".tar.gz
|
|
|
|
# tar -xf ./linux-"$(cat ./VERSION)".tar.gz
|
2024-11-04 21:25:11 +01:00
|
|
|
|
2024-11-04 21:26:37 +01:00
|
|
|
# cd linux-"$(cat ./VERSION)"
|
|
|
|
|
|
|
|
wget -nv https://git.kernel.org/torvalds/t/linux-6.12-rc6.tar.gz
|
|
|
|
tar -xf ./linux-6.12-rc6.tar.gz
|
|
|
|
cd linux-6.12-rc6
|