linux-pikaos-6.11.0/scripts/source.sh

9 lines
248 B
Bash
Raw Normal View History

2024-08-30 14:06:11 +02:00
#!/bin/bash
echo "Pika Kernel - Getting source"
2024-09-16 14:06:30 +02: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-08-30 14:06:11 +02:00
2024-09-16 14:06:30 +02:00
cd linux-"$(cat ./VERSION)"