From bfff744a1c3e9a43354d33ae4d9afd2bed8d168e Mon Sep 17 00:00:00 2001 From: Rick van de Loo Date: Sun, 30 Apr 2017 21:51:49 +0200 Subject: [PATCH] update linux 9p image mount hook doc should be host9p, otherwise the initcpio hook will try to mount /dev/sda1 (or whatever you have configured) over /new_root as a 9p fs (which it isn't) and the system will complain with "no channels available" and drop you in the emergency shell. Instead, host9p should be mounted over /new_root as type 9p. --- docs/linux-9p-image.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/linux-9p-image.md b/docs/linux-9p-image.md index 64b2a25a..29467d26 100644 --- a/docs/linux-9p-image.md +++ b/docs/linux-9p-image.md @@ -31,7 +31,7 @@ run_hook() { mount_9p_root() { msg ":: mounting '$root' on real root (9p)" - if ! mount -t 9p "$root" "$1"; then + if ! mount -t 9p host9p "$1"; then echo "You are now being dropped into an emergency shell." launch_interactive_shell msg "Trying to continue (this will most likely fail) ..."