[PATCH 1/2] hooks/add-offb: Add leading slash to HVC node paths

Samuel Mendoza-Jonas sam at mendozajonas.com
Mon Aug 8 17:22:05 AEST 2016


On Fri, 2016-08-05 at 15:05 +0800, Jeremy Kerr wrote:
> 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>

Thanks! Merged asĀ 0611a74.

> ---
>  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);
>  }
>  
>  /*



More information about the Petitboot mailing list