pcba 269 B

123456789101112131415
  1. #!/bin/sh
  2. BR="make -C buildroot BR2_EXTERNAL=../PCBA O=../PCBA/output"
  3. case "$1" in
  4. start)
  5. $BR distclean funkey_defconfig
  6. ;;
  7. update)
  8. $BR savedefconfig linux-update-defconfig uboot-update-defconfig busybox-update-config
  9. ;;
  10. *)
  11. $BR $*
  12. ;;
  13. esac