From 06dd6350b0382ef9ee2ebd67e24b7ed15555f8e7 Mon Sep 17 00:00:00 2001 From: Ian Campbell Date: Tue, 22 Sep 2015 10:33:00 +0100 Subject: [PATCH] Debian: uboot: Use di_vg_name() and lv_dev_mapper() for root= root is not a "guest lv", so using target_guest_lv_name is misleading. target_guest_lv_name also fails to properly handle the d-i vg name correctly, which di_vg_name does. Specifically under Jessie an extra "-vg" is appended to the hostname compared with Wheezy and Squeeze. Signed-off-by: Ian Campbell Acked-by: Ian Jackson --- Osstest/Debian.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Osstest/Debian.pm b/Osstest/Debian.pm index 153b375..9347c49 100644 --- a/Osstest/Debian.pm +++ b/Osstest/Debian.pm @@ -131,7 +131,7 @@ sub uboot_common_kernel_bootargs ($) { my ($ho) = @_; - my $root= target_guest_lv_name($ho,"root"); + my $root= lv_dev_mapper(di_vg_name($ho),"root"); my $rootdelay= get_host_property($ho, "rootdelay"); my @bootargs; -- 2.39.5