chiark / gitweb /
debug-shell: don't be picky, use /bin/sh rather than /bin/bash
authorTom Gundersen <teg@jklm.no>
Fri, 22 Feb 2013 16:40:00 +0000 (17:40 +0100)
committerTom Gundersen <teg@jklm.no>
Mon, 25 Feb 2013 14:08:36 +0000 (15:08 +0100)
In a minimal initramfs, one might not always have the full bash available.
Typically if using busybox.

configure.ac

index 834b12314c49921ca7b0e2f06b20d7b01968cede..b7a587c6624a46126b131b22a6b645715a872ee2 100644 (file)
@@ -276,7 +276,7 @@ AM_CONDITIONAL(HAVE_SELINUX, [test "$have_selinux" = "yes"])
 if test "x${have_selinux}" != xno ; then
         sushell=/sbin/sushell
 else
-        sushell=/bin/bash
+        sushell=/bin/sh
 fi
 AC_SUBST(sushell)