From d400468a5c9822e9c7f8c9bb7ac83cf4b56df86e Mon Sep 17 00:00:00 2001 From: Calin Crisan Date: Wed, 29 Mar 2017 21:57:06 +0300 Subject: [PATCH] build.sh: ignore initramfs configs when using `all` argument --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index ce552f0348..46e7f189c1 100755 --- a/build.sh +++ b/build.sh @@ -16,7 +16,7 @@ osversion=$(source $basedir/board/common/overlay/etc/version && echo $os_version gzip=$(which pigz || which gzip) if [ "$board" == "all" ]; then - boards=$(ls $basedir/configs/*_defconfig | grep -oE '\w+_defconfig$' | cut -d '_' -f 1) + boards=$(ls $basedir/configs/*_defconfig | grep -v initramfs | grep -oE '\w+_defconfig$' | cut -d '_' -f 1) for b in $boards; do if ! $0 $b $target; then exit 1