[OE-core] [PATCH] initscripts: Fix regression for requiring /bin/bash

Jason Wessel jason.wessel at windriver.com
Thu Aug 6 19:35:53 UTC 2015


It is not possible to create a rootfs with only busybox + initscipts.
This is a result of a regression from commit
a4b53872a8a9a2743299acbff015f7f2750a69d6 (initscripts: add
/sbin/sushell for systemd service debug-shell).

The /sbin/sushell should just use /bin/sh else you end up with a
problem when creating the end image with a failed smart transaction
shown below:

ERROR: Unable to install packages. Command '/proj/bitbake_build/tmp/sysroots/x86_64-linux/usr/bin/smart --quiet --data-dir=/proj/bitbake_build/tmp/work/qemuarma9-wrs-linux-gnueabi/wrlinux-image-glibc-small/1.0-r1/rootfs/var/lib/smart install -y dropbear at armv7at2_vfp hac at armv7at2_vfp run-postinsts at all kernel-modules at qemuarma9 packagegroup-core-boot at qemuarma9' returned 1:
error: Can't install initscripts-1.0-r155.0 at armv7at2_vfp: no package provides /bin/bash

Signed-off-by: Jason Wessel <jason.wessel at windriver.com>
---
 .../initscripts/initscripts-1.0/sushell            |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-core/initscripts/initscripts-1.0/sushell b/meta/recipes-core/initscripts/initscripts-1.0/sushell
index 7d96941..c319d95 100644
--- a/meta/recipes-core/initscripts/initscripts-1.0/sushell
+++ b/meta/recipes-core/initscripts/initscripts-1.0/sushell
@@ -1,5 +1,5 @@
-#!/bin/bash
+#!/bin/sh
 
-[ -z "$SUSHELL" ] && SUSHELL=/bin/bash
+[ -z "$SUSHELL" ] && SUSHELL=/bin/sh
 
 exec $SUSHELL
-- 
1.7.9.5




More information about the Openembedded-core mailing list