2013-05-21 14:43:46 +04:00
|
|
|
diff -Nur livecd-tools-18.8.old/imgcreate/live.py livecd-tools-18.8/imgcreate/live.py
|
|
|
|
--- livecd-tools-18.8.old/imgcreate/live.py 2013-05-21 14:40:16.000000000 +0400
|
|
|
|
+++ livecd-tools-18.8/imgcreate/live.py 2013-05-21 14:30:26.000000000 +0400
|
|
|
|
@@ -575,6 +575,10 @@
|
|
|
|
else:
|
|
|
|
long = "%s (%s)" % ("ROSA Desktop.Fresh 2012", kernel)
|
|
|
|
|
2013-05-22 12:51:23 +04:00
|
|
|
+ if os.path.exists(self._instroot + "/etc/system-release"):
|
2013-05-23 12:16:06 +04:00
|
|
|
+ long = subprocess.check_output("echo -n `sed 's, release .*$,,g' /etc/system-release`", shell=True)
|
2013-05-21 14:43:46 +04:00
|
|
|
+ logging.warn('using LSB info for syslinux names')
|
|
|
|
+
|
|
|
|
# tell dracut not to ask for LUKS passwords or activate mdraid sets
|
|
|
|
if isDracut:
|
|
|
|
kern_opts = kernel_options + " rd.luks=0 rd.md=0 rd.dm=0"
|