11 lines
227 B
Bash
Executable File
11 lines
227 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd kernel && make ARCH=arm rockchip_linux_defconfig && make ARCH=arm px3se-evb.img -j12 && cd -
|
|
|
|
if [ $? -eq 0 ]; then
|
|
echo "====Build kernel ok!===="
|
|
else
|
|
echo "====Build kernel failed!===="
|
|
exit 1
|
|
fi
|