diff options
author | Andrew Gaffney <agaffney@gentoo.org> | 2006-03-05 06:14:04 +0000 |
---|---|---|
committer | Andrew Gaffney <agaffney@gentoo.org> | 2006-03-05 06:14:04 +0000 |
commit | 545ac3bdc23ec20fc52c1b8321d55b1c18954fa2 (patch) | |
tree | 96795d3ba59229734572beca937a1387a4acc32e /src/templates | |
parent | src/templates/x86ArchitectureTemplate.py: (diff) | |
download | gli-545ac3bdc23ec20fc52c1b8321d55b1c18954fa2.tar.gz gli-545ac3bdc23ec20fc52c1b8321d55b1c18954fa2.tar.bz2 gli-545ac3bdc23ec20fc52c1b8321d55b1c18954fa2.zip |
add --batch to grub command
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/gli/trunk@1341 f8877401-5920-0410-a79b-8e2d7e04ca0d
Diffstat (limited to 'src/templates')
-rw-r--r-- | src/templates/x86ArchitectureTemplate.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/templates/x86ArchitectureTemplate.py b/src/templates/x86ArchitectureTemplate.py index c7b5c47..6191a2d 100644 --- a/src/templates/x86ArchitectureTemplate.py +++ b/src/templates/x86ArchitectureTemplate.py @@ -5,7 +5,7 @@ # of which can be found in the main directory of this project. Gentoo Linux Installer -$Id: x86ArchitectureTemplate.py,v 1.107 2006/03/05 04:25:04 agaffney Exp $ +$Id: x86ArchitectureTemplate.py,v 1.108 2006/03/05 06:14:04 agaffney Exp $ Copyright 2004 Gentoo Technologies Inc. @@ -633,7 +633,7 @@ class x86ArchitectureTemplate(ArchitectureTemplate): file_name = self._chroot_dir + "/boot/grub/glidevice.map" #If we can't find it, make it. If we STILL can't find it. die. if not GLIUtility.is_file(file_name): - exitstatus1 = GLIUtility.spawn("echo quit | "+ self._chroot_dir+"/sbin/grub --no-floppy --device-map="+file_name) + exitstatus1 = GLIUtility.spawn("echo quit | "+ self._chroot_dir+"/sbin/grub --batch --no-floppy --device-map="+file_name) if not GLIUtility.is_file(file_name): raise GLIException("BootloaderError", 'fatal', '_configure_grub', "Error making the new device map.") """ |