summaryrefslogtreecommitdiff
path: root/lbmk
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2023-09-16 10:58:04 +0100
committerLeah Rowe <leah@libreboot.org>2023-09-16 10:58:04 +0100
commit662b9266304463944cda69f1750b00e8a816fbc5 (patch)
treebf1185f9108fa0a1c48c02d1ed0b3761cb29094c /lbmk
parent4c7343088bf06edf1a806ba918139ba3d9c58902 (diff)
lbmk: remove "./buildpath mode all"
for example: ./build boot all the "all" function is a relic from a much older lbmk design, where for example we might have done: ./build clean all ./download all this is no longer used, nor is this currently relevant for the types of scripts present in lbmk. we can always re-add this function later if needed, but for now? remove unwanted code. Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'lbmk')
-rwxr-xr-xlbmk7
1 files changed, 0 insertions, 7 deletions
diff --git a/lbmk b/lbmk
index 52fdbf09..7cd57cdd 100755
--- a/lbmk
+++ b/lbmk
@@ -96,13 +96,6 @@ execute_command()
case "${option}" in
list)
./build command options "${buildpath}/${mode}" ;;
- all)
- for option in $(./build command options "${buildpath}/${mode}")
- do
- "${buildpath}/${mode}/${option}" $@ || \
- fail "script fail: ${buildpath}/${mode}/${option} $@"
- done
- ;;
*)
if [ ! -d "${buildpath}/${mode}" ]; then
usage $0