From 20b050feff5040f6cc30d3394a61291472214540 Mon Sep 17 00:00:00 2001 From: Michel-FK Date: Tue, 20 Oct 2020 23:33:32 +0200 Subject: [PATCH] remove old top-level scripts Signed-off-by: Michel-FK --- fun | 15 --------------- have | 14 -------------- 2 files changed, 29 deletions(-) delete mode 100755 fun delete mode 100755 have 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