[PATCH 1/2] hooks/add-offb: Add leading slash to HVC node paths
Jeremy Kerr
jk at ozlabs.org
Fri Aug 5 17:05:11 AEST 2016
We need an absolute path to the serial at N device. It looks like some
kernels aren't reading the current path correctly, leading to no console
output.
Signed-off-by: Jeremy Kerr <jk at ozlabs.org>
---
utils/hooks/30-add-offb.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/utils/hooks/30-add-offb.c b/utils/hooks/30-add-offb.c
index d711908..e5947ca 100644
--- a/utils/hooks/30-add-offb.c
+++ b/utils/hooks/30-add-offb.c
@@ -474,7 +474,7 @@ static char *get_hvc_path(struct offb_ctx *ctx, unsigned int termno)
return NULL;
}
- return talloc_asprintf(ctx, "ibm,opal/consoles/%s", serial);
+ return talloc_asprintf(ctx, "/ibm,opal/consoles/%s", serial);
}
/*
--
2.7.4
More information about the Petitboot
mailing list