Magellan Linux

Diff of /tags/grubby-8_32/grubby.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1332 by niro, Fri Jun 3 20:32:19 2011 UTC revision 1692 by niro, Fri Feb 17 23:14:54 2012 UTC
# Line 139  struct keywordTypes grubKeywords[] = { Line 139  struct keywordTypes grubKeywords[] = {
139  };  };
140    
141  struct configFileInfo grubConfigType = {  struct configFileInfo grubConfigType = {
142      "/boot/grub/grub.conf",    /* defaultConfig */      .defaultConfig = "/boot/grub/grub.conf",
143      grubKeywords,    /* keywords */      .keywords = grubKeywords,
144      1,    /* defaultIsIndex */      .defaultIsIndex = 1,
145      1,    /* defaultSupportSaved */      .defaultSupportSaved = 1,
146      LT_TITLE,    /* entrySeparator */      .entrySeparator = LT_TITLE,
147      1,    /* needsBootPrefix */      .needsBootPrefix = 1,
148      0,    /* argsInQuotes */      .mbHyperFirst = 1,
149      0,    /* maxTitleLength */      .mbInitRdIsModule = 1,
150      0,                                      /* titleBracketed */      .mbAllowExtraInitRds = 1,
     1,                                      /* mbHyperFirst */  
     1,                                      /* mbInitRdIsModule */  
     0,                                      /* mbConcatArgs */  
     1,                                      /* mbAllowExtraInitRds */  
151  };  };
152    
153  struct keywordTypes yabootKeywords[] = {  struct keywordTypes yabootKeywords[] = {
# Line 249  struct keywordTypes extlinuxKeywords[] = Line 245  struct keywordTypes extlinuxKeywords[] =
245  };  };
246  int useextlinuxmenu;  int useextlinuxmenu;
247  struct configFileInfo eliloConfigType = {  struct configFileInfo eliloConfigType = {
248      "/boot/efi/EFI/redhat/elilo.conf",    /* defaultConfig */      .defaultConfig = "/boot/efi/EFI/redhat/elilo.conf",
249      eliloKeywords,    /* keywords */      .keywords = eliloKeywords,
250      0,    /* defaultIsIndex */      .entrySeparator = LT_KERNEL,
251      0,    /* defaultSupportSaved */      .needsBootPrefix = 1,
252      LT_KERNEL,    /* entrySeparator */      .argsInQuotes = 1,
253      1,                    /* needsBootPrefix */      .mbConcatArgs = 1,
     1,    /* argsInQuotes */  
     0,    /* maxTitleLength */  
     0,                                      /* titleBracketed */  
     0,                                      /* mbHyperFirst */  
     0,                                      /* mbInitRdIsModule */  
     1,                                      /* mbConcatArgs */  
     0,                                      /* mbAllowExtraInitRds */  
254  };  };
255    
256  struct configFileInfo liloConfigType = {  struct configFileInfo liloConfigType = {
257      "/etc/lilo.conf",    /* defaultConfig */      .defaultConfig = "/etc/lilo.conf",
258      liloKeywords,    /* keywords */      .keywords = liloKeywords,
259      0,    /* defaultIsIndex */      .entrySeparator = LT_KERNEL,
260      0,    /* defaultSupportSaved */      .argsInQuotes = 1,
261      LT_KERNEL,    /* entrySeparator */      .maxTitleLength = 15,
     0,    /* needsBootPrefix */  
     1,    /* argsInQuotes */  
     15,    /* maxTitleLength */  
     0,                                      /* titleBracketed */  
     0,                                      /* mbHyperFirst */  
     0,                                      /* mbInitRdIsModule */  
     0,                                      /* mbConcatArgs */  
     0,                                      /* mbAllowExtraInitRds */  
262  };  };
263    
264  struct configFileInfo yabootConfigType = {  struct configFileInfo yabootConfigType = {
265      "/etc/yaboot.conf",    /* defaultConfig */      .defaultConfig = "/etc/yaboot.conf",
266      yabootKeywords,    /* keywords */      .keywords = yabootKeywords,
267      0,    /* defaultIsIndex */      .entrySeparator = LT_KERNEL,
268      0,    /* defaultSupportSaved */      .needsBootPrefix = 1,
269      LT_KERNEL,    /* entrySeparator */      .argsInQuotes = 1,
270      1,    /* needsBootPrefix */      .maxTitleLength = 15,
271      1,    /* argsInQuotes */      .mbAllowExtraInitRds = 1,
     15,    /* maxTitleLength */  
     0,                                      /* titleBracketed */  
     0,                                      /* mbHyperFirst */  
     0,                                      /* mbInitRdIsModule */  
     0,                                      /* mbConcatArgs */  
     1,                                      /* mbAllowExtraInitRds */  
272  };  };
273    
274  struct configFileInfo siloConfigType = {  struct configFileInfo siloConfigType = {
275      "/etc/silo.conf",    /* defaultConfig */      .defaultConfig = "/etc/silo.conf",
276      siloKeywords,    /* keywords */      .keywords = siloKeywords,
277      0,    /* defaultIsIndex */      .entrySeparator = LT_KERNEL,
278      0,    /* defaultSupportSaved */      .needsBootPrefix = 1,
279      LT_KERNEL,    /* entrySeparator */      .argsInQuotes = 1,
280      1,    /* needsBootPrefix */      .maxTitleLength = 15,
     1,    /* argsInQuotes */  
     15,    /* maxTitleLength */  
     0,                                      /* titleBracketed */  
     0,                                      /* mbHyperFirst */  
     0,                                      /* mbInitRdIsModule */  
     0,                                      /* mbConcatArgs */  
     0,                                      /* mbAllowExtraInitRds */  
281  };  };
282    
283  struct configFileInfo ziplConfigType = {  struct configFileInfo ziplConfigType = {
284      "/etc/zipl.conf",    /* defaultConfig */      .defaultConfig = "/etc/zipl.conf",
285      ziplKeywords,    /* keywords */      .keywords = ziplKeywords,
286      0,    /* defaultIsIndex */      .entrySeparator = LT_TITLE,
287      0,    /* defaultSupportSaved */      .argsInQuotes = 1,
288      LT_TITLE,    /* entrySeparator */      .titleBracketed = 1,
     0,    /* needsBootPrefix */  
     1,    /* argsInQuotes */  
     0,    /* maxTitleLength */  
     1,                                      /* titleBracketed */  
     0,                                      /* mbHyperFirst */  
     0,                                      /* mbInitRdIsModule */  
     0,                                      /* mbConcatArgs */  
     0,                                      /* mbAllowExtraInitRds */  
289  };  };
290    
291  struct configFileInfo extlinuxConfigType = {  struct configFileInfo extlinuxConfigType = {
292      "/boot/extlinux/extlinux.conf",         /* defaultConfig */      .defaultConfig = "/boot/extlinux/extlinux.conf",
293      extlinuxKeywords,                       /* keywords */      .keywords = extlinuxKeywords,
294      0,                                      /* defaultIsIndex */      .entrySeparator = LT_TITLE,
295      0,                                      /* defaultSupportSaved */      .needsBootPrefix = 1,
296      LT_TITLE,                               /* entrySeparator */      .maxTitleLength = 255,
297      1,                                      /* needsBootPrefix */      .mbAllowExtraInitRds = 1,
     0,                                      /* argsInQuotes */  
     255,                                    /* maxTitleLength */  
     0,                                      /* titleBracketed */  
     0,                                      /* mbHyperFirst */  
     0,                                      /* mbInitRdIsModule */  
     0,                                      /* mbConcatArgs */  
     1,                                      /* mbAllowExtraInitRds */  
298  };  };
299    
300  struct grubConfig {  struct grubConfig {

Legend:
Removed from v.1332  
changed lines
  Added in v.1692