janneke pushed a commit to branch wip-hurd-vm in repository guix. commit 265eed64b5db869f472fab0fb18a4b80557be1dc Author: Jan (janneke) Nieuwenhuizen <jann...@gnu.org> AuthorDate: Sun Apr 5 09:18:56 2020 +0200
HACK gnu: hurd: Try remount / rw. * gnu/packages/hurd.scm (hurd): --- gnu/packages/hurd.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gnu/packages/hurd.scm b/gnu/packages/hurd.scm index c93a590..29f38ce 100644 --- a/gnu/packages/hurd.scm +++ b/gnu/packages/hurd.scm @@ -372,7 +372,10 @@ boot, since this cannot be done from GNU/Linux." (("^SHELL=.*") (string-append "SHELL=" bash "/bin/bash\n")) (("/sbin/") (string-append out "/sbin/")) - (("/libexec/") (string-append out "/libexec/"))) + (("/libexec/") (string-append out "/libexec/")) + ;; Let's try if writable / helps... + (("export PATH") (string-append "export PATH\n" + "mount -o remount,rw /"))) (substitute* "sutils/MAKEDEV.sh" (("^PATH=.*") (string-append "PATH=" out "/bin:" out "/sbin\n")))