YaST2 Developers Documentation: Configuration of lilo



functions
files
intro

Configuration of lilo

lilo_write.ycp
Writing only client
This is a write-only client. It takes its arguments and just write the settings.

Includes

  • lilo/io.ycp
  • lilo/routines.ycp

Functions

Parameters:
first a map of lilo settings example: $[ "conf" :$["global" : // global options $[ "boot": "/dev/hda", "default": "linux" ], "image" : // list of image sections with their options [ $[ "label": "linux", "image": "/boot/vmlinuz" ] ] "other" : [...] // list of other sections ] "file" : "/etc/lilo.conf" // output file "execute_lilo" : boolean // execute or don't execute lilo after writing ]
Return value:
success of operation

global LiloWrite (map settings) -> map

writes config to disk.

Parameters:
settings see above
Return value:
result

YaST2 Developers Documentation