linux-pikaos-6.12.1/scripts/source.sh

9 lines
248 B
Bash
Raw Normal View History

2024-11-04 21:25:11 +01:00
#!/bin/bash
echo "Pika Kernel - Getting source"
2024-11-18 15:17:56 +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-18 15:17:56 +01:00
cd linux-"$(cat ./VERSION)"