2018-08-24 22:05:17 +02:00
|
|
|
#!/bin/sh -xe
|
|
|
|
|
|
|
|
#Build everything
|
|
|
|
|
|
|
|
#Get sudo
|
|
|
|
sudo echo "Thanks."
|
|
|
|
#Build kernel WITHOUT SUDO, building the kernel with sudo is bad practice
|
2018-09-06 01:35:33 +02:00
|
|
|
#Once, sometime in the kernel version 2 days building the kernel with sudo broke the
|
|
|
|
#The system it was built on
|
2018-09-06 15:40:57 +02:00
|
|
|
./scripts/buildKernel.sh
|
2018-08-24 22:05:17 +02:00
|
|
|
#build os WITH sudo, debootstrap requires sudo
|
2018-09-06 01:35:33 +02:00
|
|
|
sudo ./scripts/buildDebianFs.sh
|