mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 00:59:48 +00:00
lib/oe/package_manager: fix opkg feed generation
The insert_feed_uris() method of OpkgPM was creating an initial entry in the feeds list which pointed to the root of the ipk directory, however the on-device package manager can't consume this feed resulting in runtime errors - therefore we remove the code to generate that initial feed uri. (From OE-Core master rev: 18e5dcfc610a255e490e4425f11213b8e14c6e00) (From OE-Core rev: 886a31054808f40b563b7ff5f402f3f0d115759a) Signed-off-by: Joshua Lock <joshua.lock@collabora.co.uk> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
f22f5b2e52
commit
baab91ee8c
@@ -1341,13 +1341,10 @@ class OpkgPM(PackageManager):
|
|||||||
with open(rootfs_config, "w+") as config_file:
|
with open(rootfs_config, "w+") as config_file:
|
||||||
uri_iterator = 0
|
uri_iterator = 0
|
||||||
for uri in self.feed_uris.split():
|
for uri in self.feed_uris.split():
|
||||||
config_file.write("src/gz url-%d %s/ipk\n" %
|
|
||||||
(uri_iterator, uri))
|
|
||||||
|
|
||||||
for arch in self.pkg_archs.split():
|
for arch in self.pkg_archs.split():
|
||||||
if not os.path.exists(os.path.join(self.deploy_dir, arch)):
|
if not os.path.exists(os.path.join(self.deploy_dir, arch)):
|
||||||
continue
|
continue
|
||||||
bb.note('Note: adding opkg channel url-%s-%d (%s)' %
|
bb.note('Note: adding opkg feed url-%s-%d (%s)' %
|
||||||
(arch, uri_iterator, uri))
|
(arch, uri_iterator, uri))
|
||||||
|
|
||||||
config_file.write("src/gz uri-%s-%d %s/ipk/%s\n" %
|
config_file.write("src/gz uri-%s-%d %s/ipk/%s\n" %
|
||||||
|
|||||||
Reference in New Issue
Block a user