From 4917e36a77bd6821b45db52caa43939d344d92f6 Mon Sep 17 00:00:00 2001 From: Jason Wessel Date: Thu, 6 Aug 2015 14:35:53 -0500 Subject: initscripts: Fix regression for requiring /bin/bash 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@armv7at2_vfp hac@armv7at2_vfp run-postinsts@all kernel-modules@qemuarma9 packagegroup-core-boot@qemuarma9' returned 1: error: Can't install initscripts-1.0-r155.0@armv7at2_vfp: no package provides /bin/bash Signed-off-by: Jason Wessel Signed-off-by: Richard Purdie --- meta/recipes-core/initscripts/initscripts-1.0/sushell | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meta/recipes-core/initscripts') diff --git a/meta/recipes-core/initscripts/initscripts-1.0/sushell b/meta/recipes-core/initscripts/initscripts-1.0/sushell index 7d96941687..c319d95bf7 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 -- cgit 1.2.3-korg