11 lines
174 B
Bash
Executable File
11 lines
174 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd u-boot && ./make.sh fennec-rk3288 && cd -
|
|
|
|
if [ $? -eq 0 ]; then
|
|
echo "====Build uboot ok!===="
|
|
else
|
|
echo "====Build uboot failed!===="
|
|
exit 1
|
|
fi
|