Added PCBA build

This commit is contained in:
Michel-FK
2020-07-27 21:09:31 +02:00
parent e391eeaeed
commit 3dd8a49f7f
39 changed files with 3006 additions and 2 deletions

15
pcba Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/sh
BR="make -C buildroot BR2_EXTERNAL=../PCBA O=../PCBA/output"
case "$1" in
start)
$BR distclean funkey_defconfig
;;
update)
$BR savedefconfig linux-update-defconfig uboot-update-defconfig busybox-update-config
;;
*)
$BR $*
;;
esac