Add max_loop=255 parameter to kernel commandline. #101

It's needed to create more than 2 AppVMs.
This commit is contained in:
Tomasz Sterna 2011-03-23 22:31:59 +01:00
parent 90257f335d
commit 6dd80acc47

View File

@ -356,6 +356,7 @@ class x86BootloaderInfo(efiBootloaderInfo):
f.write('\tmodule %s ro%s' %(kernelFile, realroot))
if self.args.get():
f.write(' %s' % self.args.get())
f.write(' max_loop=255')
f.write('\n')
if initrd:
f.write('\tmodule %s%s\n' % (cfPath, initrd))