install.sh 228 B

12345678910111213141516
  1. #!/bin/sh
  2. if [ -n "$1" ];then
  3. cd $1
  4. else
  5. return
  6. fi
  7. \cp arch/arm/boot/zImage /boot/
  8. \cp arch/arm/boot/dts/rk3288-miqi.dtb /boot/
  9. rm -rf /lib/modules/*
  10. make modules_install
  11. rm -rf /lib/firmware/*
  12. make firmware_install