diff --git a/fun b/fun deleted file mode 100755 index 9016238..0000000 --- a/fun +++ /dev/null @@ -1,15 +0,0 @@ -#!/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 busybox-update-config - ;; - *) - $BR $* - ;; -esac diff --git a/have b/have deleted file mode 100755 index 85766f5..0000000 --- a/have +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh - -case "$1" in - fun) - buildroot/utils/brmake -C buildroot BR2_EXTERNAL=../FunKey O=../FunKey/output - ;; - pcba) - buildroot/utils/brmake -C buildroot BR2_EXTERNAL=../PCBA O=../PCBA/output - ;; - *) - echo "You can only have fun or pcba!" >&2 - exit 1 - ;; -esac