[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[PATCH 3/5] Look for /bin/sh, not /sbin/busybox.
- From: Chris Lumens <clumens redhat com>
- To: anaconda-devel-list redhat com
- Cc:
- Subject: [PATCH 3/5] Look for /bin/sh, not /sbin/busybox.
- Date: Mon, 6 Jul 2009 13:57:12 -0400
---
loader/loader.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/loader/loader.c b/loader/loader.c
index 1de7019..8cbb17d 100644
--- a/loader/loader.c
+++ b/loader/loader.c
@@ -228,7 +228,7 @@ void startNewt(void) {
newtRunning = 1;
if (FL_TESTING(flags))
newtSetSuspendCallback((void *) doSuspend, NULL);
- else if (!access("/sbin/busybox", X_OK))
+ else if (!access("/bin/sh", X_OK))
newtSetSuspendCallback((void *) doShell, NULL);
}
}
--
1.6.1.3
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]