summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/rootfs_ipk.bbclass13
1 files changed, 12 insertions, 1 deletions
diff --git a/meta/classes/rootfs_ipk.bbclass b/meta/classes/rootfs_ipk.bbclass
index b4b95c5645..ec0195159e 100644
--- a/meta/classes/rootfs_ipk.bbclass
+++ b/meta/classes/rootfs_ipk.bbclass
@@ -205,7 +205,18 @@ ipk_insert_feed_uris () {
205 205
206 # insert new feed-sources 206 # insert new feed-sources
207 echo "src/gz $feed_name $feed_uri" >> ${IPKGCONF_TARGET} 207 echo "src/gz $feed_name $feed_uri" >> ${IPKGCONF_TARGET}
208 done 208 done
209
210 # Allow to use package deploy directory contents as quick devel-testing
211 # feed. This creates individual feed configs for each arch subdir of those
212 # specified as compatible for the current machine.
213 # NOTE: Development-helper feature, NOT a full-fledged feed.
214 if [ -n "${FEED_DEPLOYDIR_BASE_URI}" ]; then
215 for arch in ${PACKAGE_ARCHS}
216 do
217 echo "src/gz local-$arch ${FEED_DEPLOYDIR_BASE_URI}/$arch" >> ${IMAGE_ROOTFS}/etc/opkg/local-$arch-feed.conf
218 done
219 fi
209} 220}
210 221
211python () { 222python () {