From 4bc4b4c5a50c595e3dbe27fe530d27b8bd46faba Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Fri, 20 Nov 2015 14:44:09 -0800 Subject: [PATCH] livemedia-creator: Use hd:LABEL for stage2 iso The correct way with the current dracut (and it should be backwards compatible) is to reference it as stage2=hd:LABEL=... --- src/sbin/livemedia-creator | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sbin/livemedia-creator b/src/sbin/livemedia-creator index a994210c..dd2aa1b5 100755 --- a/src/sbin/livemedia-creator +++ b/src/sbin/livemedia-creator @@ -160,7 +160,7 @@ class VirtualInstall(object): if kernel_args: extra_args += " "+kernel_args if iso.stage2: - extra_args += " stage2=live:CDLABEL={0}".format(udev_escape(iso.label)) + extra_args += " stage2=hd:LABEL={0}".format(udev_escape(iso.label)) args.append("--extra-args") args.append(extra_args)