diff options
| author | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-09-12 22:04:09 +0000 |
|---|---|---|
| committer | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-09-12 22:04:09 +0000 |
| commit | a0e32e9e338fdf8f2201cbda92766d3edba1088f (patch) | |
| tree | 8eb0ce67c09e29d17d90c79a613d73bcbc36e479 /target/imagebuilder/files/opkg-generate-config.sh | |
| parent | 98656aad20554a1292832cd5298fdb044c7263e9 (diff) | |
[imagebuilder]
- sync with host opkg changes
- get rid of autogenerated opkg.conf
- utilize dl/ as package cache, useful for remote downloads
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23039 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/imagebuilder/files/opkg-generate-config.sh')
| -rwxr-xr-x | target/imagebuilder/files/opkg-generate-config.sh | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/target/imagebuilder/files/opkg-generate-config.sh b/target/imagebuilder/files/opkg-generate-config.sh deleted file mode 100755 index b2047a0d4..000000000 --- a/target/imagebuilder/files/opkg-generate-config.sh +++ /dev/null @@ -1,46 +0,0 @@ -#!/bin/sh - -TOPDIR="$(pwd)" -TARGETDIR="${1}" - -[ -f "$TOPDIR/scripts/${0##*/}" ] || { - echo "Please execute within the toplevel directory" >&2 - exit 1 -} - -# Try to find package architecture from packages directory -PKGARCH= -for pkg in $TOPDIR/packages/*.ipk; do - if [ -f "$pkg" ]; then - PKGARCH="${pkg##*/}" - PKGARCH="${PKGARCH#*_*_}" - PKGARCH="${PKGARCH%.ipk}" - [ "$PKGARCH" = all ] || break - fi -done - -# Try to find package architecture from the target directory -[ -n "$PKGARCH" ] || { - PKGARCH="${TARGETDIR##*/root-}" - [ "$PKGARCH" != "$TARGETDIR" ] || { - echo "Cannot determine package architecture" >&2 - exit 1 - } -} - -rm -f $TOPDIR/tmp/opkg.conf - -[ -f $TOPDIR/repositories.conf ] && \ - $TOPDIR/staging_dir/host/bin/sed \ - -n -e "s/\$A/$PKGARCH/g" -e "/^[[:space:]]*src/p" \ - $TOPDIR/repositories.conf > $TOPDIR/tmp/opkg.conf - -cat <<EOT >> $TOPDIR/tmp/opkg.conf -dest root / -arch all 100 -arch $PKGARCH 200 -option offline_root $TARGETDIR -src imagebuilder file:$TOPDIR/packages -EOT - -exit 0 |
