From e035f3faab1c98f8a2f33a8640915f849166c745 Mon Sep 17 00:00:00 2001 From: Michael Lauer Date: Tue, 29 Jul 2008 13:36:42 +0000 Subject: [PATCH] make sure update-rc is always executed in an offline postinst (from poky r4976) (Note: This fixes (among other things) dbus not being started on first boot) --- classes/update-rc.d.bbclass | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/classes/update-rc.d.bbclass b/classes/update-rc.d.bbclass index 3051b7933f..9b832c0012 100644 --- a/classes/update-rc.d.bbclass +++ b/classes/update-rc.d.bbclass @@ -45,10 +45,12 @@ python populate_packages_prepend () { bb.data.setVar("OVERRIDES", "%s:%s" % (pkg, overrides), localdata) bb.data.update_data(localdata) - postinst = bb.data.getVar('pkg_postinst', localdata, 1) - if not postinst: - postinst = '#!/bin/sh\n' + postinst = '#!/bin/sh\n' postinst += bb.data.getVar('updatercd_postinst', localdata, 1) + try: + postinst += bb.data.getVar('pkg_postinst', localdata, 1) + except: + pass bb.data.setVar('pkg_postinst_%s' % pkg, postinst, d) prerm = bb.data.getVar('pkg_prerm', localdata, 1) if not prerm: -- 2.39.5