- sync with host opkg changes - get rid of autogenerated opkg.conf - utilize dl/ as package cache, useful for remote downloads
SVN-Revision: 23039master
parent
d3e206ad96
commit
ea5904ff93
@ -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 |
@ -1,5 +1,6 @@ |
||||
## Place your custom repositories here, they must match the architecture and version. |
||||
## The special placeholder "$A" can be used to specify the current package architecture. |
||||
|
||||
# src/gz snapshots http://downloads.openwrt.org/snapshots/trunk/$A/packages |
||||
# src custom file:///usr/src/openwrt/bin/$A/packages |
||||
|
||||
## This is the local package repository, do not remove! |
||||
src imagebuilder file:packages |
||||
|
Loading…
Reference in new issue