summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oe/rootfs.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py
index ddda552263..e5512d09ef 100644
--- a/meta/lib/oe/rootfs.py
+++ b/meta/lib/oe/rootfs.py
@@ -148,6 +148,16 @@ class Rootfs(object, metaclass=ABCMeta):
148 bb.note(" Install complementary '*-src' packages...") 148 bb.note(" Install complementary '*-src' packages...")
149 self.pm.install_complementary('*-src') 149 self.pm.install_complementary('*-src')
150 150
151 """
152 Install additional debug packages. Possibility to install additional packages,
153 which are not automatically installed as complementary package of
154 standard one, e.g. debug package of static libraries.
155 """
156 extra_debug_pkgs = self.d.getVar('IMAGE_INSTALL_DEBUGFS')
157 if extra_debug_pkgs:
158 bb.note(" Install extra debug packages...")
159 self.pm.install(extra_debug_pkgs.split(), True)
160
151 bb.note(" Rename debug rootfs...") 161 bb.note(" Rename debug rootfs...")
152 try: 162 try:
153 shutil.rmtree(self.image_rootfs + '-dbg') 163 shutil.rmtree(self.image_rootfs + '-dbg')