
Cleaned up build files, resources, scripts. Made the image use a partition map to fix mmc issues Signed-off-by: SolidHal <solidhal@users.noreply.github.com>
13 lines
356 B
Bash
Executable File
13 lines
356 B
Bash
Executable File
#!/bin/sh -xe
|
|
|
|
#Build everything
|
|
|
|
#Get sudo
|
|
sudo echo "Thanks."
|
|
#Build kernel WITHOUT SUDO, building the kernel with sudo is bad practice
|
|
#Once, sometime in the kernel version 2 days building the kernel with sudo broke the
|
|
#The system it was built on
|
|
#./scripts/buildKernel.sh
|
|
#build os WITH sudo, debootstrap requires sudo
|
|
sudo ./scripts/buildDebianFs.sh
|