[imagebuilder] fix arch detection pattern to cope with underscores in board name...
[openwrt.git] / target / imagebuilder / files / opkg-generate-config.sh
index a385d9f..d8fb0e4 100755 (executable)
@@ -12,7 +12,8 @@ TARGETDIR="${1}"
 PKGARCH=
 for pkg in $TOPDIR/packages/*.ipk; do
        if [ -f "$pkg" ]; then
-               PKGARCH="${pkg##*_}"
+               PKGARCH="${pkg##*/}"
+               PKGARCH="${PKGARCH#*_*_}"
                PKGARCH="${PKGARCH%.ipk}"
                [ "$PKGARCH" = all ] || break
        fi
This page took 0.022694 seconds and 4 git commands to generate.