summaryrefslogtreecommitdiffstats
path: root/booty/ia64.py
Commit message (Collapse)AuthorAgeFilesLines
* Move bootloader into the Anaconda object.Chris Lumens2010-02-041-2/+2
|
* With flags.setupFilesystems gone, justConfig can be removed from booty.Chris Lumens2009-12-031-4/+3
| | | | | | | ...well, it can mostly be removed. The s390 and x86 classes still do some complicated things that end up with a justConfig test, so it has to stay in those files. However, their write() methods no longer need to accept that parameter.
* dracut has initrd-generic-<version> instead of initrd-<version> (#519185)Hans de Goede2009-08-261-3/+0
| | | | | | | | dracut using kernel come with a prebuild initrd-generic-<version> instead of initrd-<version>, so if we fail to find /boot/initrd-<version>.img, check for /boot/initrd-generic-<version>.img instead. I've done things this way so that if we ever need to generate system specific (so non generic) initrd's for some reason the code will stay working.
* Pass InstalltData to booty __init__ as it needs access to many of its membersHans de Goede2009-08-051-2/+2
| | | | | | | | | 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-2/+2
| | | | | | | | | 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 /
* Catch errors from bootloader installation and tell the user (#502210).Chris Lumens2009-06-051-8/+10
|
* bootloader.write takes fewer arguments now, so clean up arg passing.Chris Lumens2009-03-041-1/+1
|
* Move BootyNoKernelWarning into __init__.py and use it.Chris Lumens2009-03-041-1/+2
| | | | | 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-2/+2
| | | | | | 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.
* Remove all uses of fsset.getEntryByMountPoint.Chris Lumens2009-03-041-7/+7
|
* Move each bootloader class into its own file.Chris Lumens2009-03-041-0/+39