9 lines
205 B
Bash
Executable File
9 lines
205 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Pika Kernel - Getting source"
|
|
|
|
wget -nv https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/snapshot/linux-6.5-rc5.tar.gz
|
|
tar -xf ./linux-6.5-rc5.tar.gz
|
|
|
|
cd linux-6.5-rc5
|