mirror of
https://github.com/FunKey-Project/FunKey-OS.git
synced 2025-12-12 15:48:51 +01:00
16 lines
251 B
Bash
Executable File
16 lines
251 B
Bash
Executable File
#!/bin/sh
|
|
|
|
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
|