search for: liloconfigfil

Displaying 2 results from an estimated 2 matches for "liloconfigfil".

Did you mean: liloconfigfile
2007 May 03
3
[PATCH] pygrub: look harder for elilo.conf
...efad5 -r 67df28389f46 tools/pygrub/src/pygrub --- a/tools/pygrub/src/pygrub Wed May 02 14:50:56 2007 -0400 +++ b/tools/pygrub/src/pygrub Wed May 02 22:39:12 2007 -0400 @@ -361,7 +361,12 @@ class Grub: if platform.machine() == ''ia64'': self.cf = grub.LiloConf.LiloConfigFile() - file_list = ("/efi/redhat/elilo.conf",) + # common distributions + file_list = ("/efi/debian/elilo.conf", "/efi/gentoo/elilo.conf", + "/efi/redflag/elilo.conf", "/efi/redhat/elilo.conf",...
2012 Jul 19
2
[PATCH] pygrub: add syslog support to pygrub
...aw config file rather than a disk image.""" - + if not os.access(fn, os.R_OK): raise RuntimeError, "Unable to access %s" %(fn,) if platform.machine() == ''ia64'': - cfg_list = map(lambda x: (x,grub.LiloConf.LiloConfigFile), + cfg_list = map(lambda x: (x,grub.LiloConf.LiloConfigFile), # common distributions - ["/efi/debian/elilo.conf", "/efi/gentoo/elilo.conf", - "/efi/redflag/elilo.conf", &quo...