summaryrefslogtreecommitdiffstats
path: root/booty/__init__.py
Commit message (Collapse)AuthorAgeFilesLines
* Pass InstalltData to booty __init__ as it needs access to many of its membersHans de Goede2009-08-051-8/+8
| | | | | | | | | Currently we are passing storage and network to booty's __init__, for writing the necessary kernel cmdline parameters for dracut for international consoles / keyboards booty will also need access to keyboard and language, instead of passing these all in seperately just pass InstalltData to booty's __init__. This is a preparation patch for writing out the dracut kernel cmdline commands for i18n support.
* Add a dracutSetupString method to network.pyHans de Goede2009-08-041-8/+8
| | | | | | | | | Add a dracutSetupString method to network.py, this can be used to ask the Network class to get a dracut setup string to setup the interface needed for a connection to a certain host. This patch also adds code to booty to use this to get kernel cmdline dracut setup commands for any NIC's needed to connect to devices needed for /
* Use iutil arch specifiers rather than rhplJeremy Katz2009-07-011-10/+7
| | | | | Switch to using iutil.isFoo() methods rather than checking the value of rhpl.getArch()
* Fix a typoJesse Keating2009-03-101-1/+1
|
* Move BootyNoKernelWarning into __init__.py and use it.Chris Lumens2009-03-041-0/+7
| | | | | Also, this gets rid of the goofy self.noKernelsWarn method which doesn't serve any useful purpose now that booty's part of anaconda.
* Add a storage instance to all bootloaderInfo subclasses.Chris Lumens2009-03-041-9/+9
| | | | | | We could pass storage around to all the various functions that will need it, but that's a big mess. It's far easier to just set this when we create the bootloaderInfo class and never worry about it again.
* Move each bootloader class into its own file.Chris Lumens2009-03-041-0/+1
|
* Reduce booty.py down to the bare minimum.Chris Lumens2009-03-041-0/+47