diff options
author | lcapriotti <lcapriotti@svn> | 2009-11-06 09:18:41 +0000 |
---|---|---|
committer | lcapriotti <lcapriotti@svn> | 2009-11-06 09:18:41 +0000 |
commit | 17ca09a8d8b16f35713c9b85645be8be8f6027ff (patch) | |
tree | a4c9b746d4991ae2ee67fd66d6587b3da77f90b7 /tools/XBMCLive/installXBMC | |
parent | fa8e3beed60a280d8d48896040d3c3326a13670f (diff) |
silence HDD grub2 boot
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@24342 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'tools/XBMCLive/installXBMC')
-rwxr-xr-x | tools/XBMCLive/installXBMC | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/XBMCLive/installXBMC b/tools/XBMCLive/installXBMC index e83fcde8c5..28a7e948ed 100755 --- a/tools/XBMCLive/installXBMC +++ b/tools/XBMCLive/installXBMC @@ -609,11 +609,13 @@ def modifyGrubMenuV2(useGrubLegacy, basePath, isaRemovableDrive, bootPartition): content += ("fi" + "\n") content += ("\n") content += ('menuentry "XBMCLive" {' + "\n") - content += (" linux /vmlinuz root=UUID=" + findUUID(bootPartition) + " quiet splash xbmc=autostart,nodiskmount,setvolume,noredir loglevel=0" + "\n") + content += ('set quiet=1' + "\n") + content += (" linux /vmlinuz root=UUID=" + findUUID(bootPartition) + " quiet splash xbmc=autostart,nodiskmount,setvolume,noredir,wakeOnUSBRemote loglevel=0" + "\n") content += (" initrd /initrd.img" + "\n") content += ("}" + "\n") content += ("\n") content += ('menuentry "XBMCLive - SAFE MODE" {' + "\n") + content += ('set quiet=1' + "\n") content += (" linux /vmlinuz root=UUID=" + findUUID(bootPartition) + " xbmc=nodiskmount,noredir loglevel=0" + "\n") content += (" initrd /initrd.img" + "\n") content += ("}" + "\n") |