From 98724d701b10a037e8ffa7ce2864a08993268517 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Fri, 14 Jun 2024 13:19:25 +0100 Subject: lib.sh: remove the items() function it's pretty much just doing the same thing as ls -1 remove it! Signed-off-by: Leah Rowe --- script/roms | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'script/roms') diff --git a/script/roms b/script/roms index 88ab8cd1..3890eddc 100755 --- a/script/roms +++ b/script/roms @@ -36,7 +36,7 @@ main() elif [ "$1" = "serprog" ]; then shift 1; handle_serprog $@; return 0 elif [ "$1" = "list" ]; then - x_ items config/coreboot; return 0 + x_ ls -1 config/coreboot; return 0 else [ "$1" = "all" ] && shift && continue boards="$1 $boards" @@ -44,7 +44,7 @@ main() fi done - [ -n "$boards" ] || boards="$(items config/coreboot)" || \ + [ -n "$boards" ] || boards="$(ls -1 config/coreboot)" || \ $err "Cannot generate list of boards for building" for x in $boards; do [ -d "config/coreboot/$x/config" ] && \ -- cgit v1.2.1