mirror of
https://github.com/LuckfoxTECH/luckfox-pico.git
synced 2026-01-18 03:28:19 +01:00
12 lines
139 B
Bash
12 lines
139 B
Bash
#!/bin/sh
|
|
|
|
if [ "`whoami`" != "root" ]; then
|
|
echo Need to be root to execute.;
|
|
exit 1;
|
|
fi
|
|
|
|
cd ..
|
|
make clean
|
|
make -j 4
|
|
make install
|