diff options
author | Fredrik Gustafsson <fredrik.gustafsson@axis.com> | 2020-07-24 16:42:31 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-07-27 19:58:10 +0100 |
commit | 59397b3a01d03f4063c3665a1d7e7e6e7dfb853d (patch) | |
tree | 48db01f790e0f347c9b368355f536da5bf21b358 /meta/lib/oe/rootfs.py | |
parent | a0416ca06e9150b19bc572f3ad6a49428312961e (diff) | |
download | poky-59397b3a01d03f4063c3665a1d7e7e6e7dfb853d.tar.gz |
ipk: Move ipk manifest to its own subdir
This is a part of a refactor that will split the package manager
code so that it's possible to use other package managers in other
layers.
(From OE-Core rev: 405cd8560fed2e05fc82919d728c42516793cc0f)
Signed-off-by: Fredrik Gustafsson <fredrigu@axis.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oe/rootfs.py')
-rw-r--r-- | meta/lib/oe/rootfs.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py index c674551764..1ba0a71253 100644 --- a/meta/lib/oe/rootfs.py +++ b/meta/lib/oe/rootfs.py | |||
@@ -12,6 +12,7 @@ import os | |||
12 | import subprocess | 12 | import subprocess |
13 | import re | 13 | import re |
14 | from oe.package_manager.rpm.manifest import RpmManifest | 14 | from oe.package_manager.rpm.manifest import RpmManifest |
15 | from oe.package_manager.ipk.manifest import OpkgManifest | ||
15 | 16 | ||
16 | class Rootfs(object, metaclass=ABCMeta): | 17 | class Rootfs(object, metaclass=ABCMeta): |
17 | """ | 18 | """ |