17 lines
228 B
Bash
17 lines
228 B
Bash
#!/bin/sh
|
|
|
|
if [ -n "$1" ];then
|
|
cd $1
|
|
else
|
|
return
|
|
fi
|
|
|
|
\cp arch/arm/boot/zImage /boot/
|
|
\cp arch/arm/boot/dts/rk3288-miqi.dtb /boot/
|
|
|
|
rm -rf /lib/modules/*
|
|
make modules_install
|
|
rm -rf /lib/firmware/*
|
|
make firmware_install
|
|
|