Optimized boot time and USB back to working

This commit is contained in:
Michel-FK
2019-05-03 19:42:15 +02:00
parent 523736709c
commit e70026f931
12 changed files with 247 additions and 59 deletions

15
fun
View File

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