From fb2f56f8a681baa2b5ee728053d9386c0179131a Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Sat, 26 Apr 2025 09:55:07 -0400 Subject: [PATCH] hibyos: "run script" now invokes "/bin/sh" instead of "sh" Change-Id: I409b8deaf7150abb0c00204e596bf8906b3fdc46 --- bootloader/rocker_linux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootloader/rocker_linux.c b/bootloader/rocker_linux.c index 4d095b8885..b9dc9f9406 100644 --- a/bootloader/rocker_linux.c +++ b/bootloader/rocker_linux.c @@ -429,7 +429,7 @@ void run_file(const char *name) pid_t pid = fork(); if(pid == 0) { - execlp("sh", "sh", buf, NULL); + execlp("/bin/sh", "sh", buf, NULL); _exit(42); } int status;