summaryrefslogtreecommitdiffstats
path: root/loader2
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix the build.Chris Lumens2007-12-191-4/+3
|
* Remove obsolete hardware code.Bill Nottingham2007-12-196-487/+0
|
* Use udev to coldplug modules.Bill Nottingham2007-12-191-95/+40
| | | | | Run udevtrigger to start coldplug, and udevsettle to wait for it to finish.
* Adjust to removal of moduleDeps and moduleList.Bill Nottingham2007-12-1918-275/+70
|
* Don't handle all aspects of module loading ourselves - just wrap modprobe.Bill Nottingham2007-12-196-1561/+165
| | | | | | | | | | | | This includes: - removal of the moddeps code - removal of the module list tracking For handling passed options in the installed system, write a /etc/modprobe.d files with: 1) any options passed on the installer command line 2) any modules blacklisted via the command line 3) any options directly specified for modules
* Switch to a dynamically linked stage 1.Bill Nottingham2007-12-191-1/+1
| | | | | | | | | | | - Use udev, not udev-static. - Include module-init-tools. - Link loader dynamically. - Split DSO dependency finder off into a separate functions file; use it in both mk-images and upd-instroot - Adjust mk-images to use it - Nuke hardcoded s390 library list for stage1 - Add non-DSO library deps to stage1 - libgcc (backtrace), libnss_files
* Clean up typos and other things for GPLv2+ changes.David Cantrell2007-12-1738-115/+115
| | | | | | | Shorten 'Red Hat Author(s)' to just 'Author(s)'. Perhaps eventually we'll get an AUTHORS file and will just remove author names from the individual files. Also fixed a type in scripts/dumphdrlist.py where Author was listed twice.
* GPLv2+ boilerplates for loader2/ source files.David Cantrell2007-12-1774-354/+1217
|
* Add license boilerplates to Makefiles.David Cantrell2007-12-171-0/+19
| | | | | | | | All Makefiles have a standard RH license boilerplate. Existing copyright ranges have been expanded out to list each year, since you are supposed to do that for license boilerplates (ranges aren't valid). Any existing authors mentioned are listed under the Red Hat Author(s) part.
* Update list of crypto mods to load.David Lehman2007-12-131-1/+1
|
* Merge branch 'master' of git+ssh://git.fedorahosted.org/git/anacondaBill Nottingham2007-12-132-5/+4
|\
| * Don't try to parse a NULL ui structure.Chris Lumens2007-12-111-2/+3
| |
| * Fix the implied ksfile name to use the system's IP address (#420281).Chris Lumens2007-12-111-3/+1
| |
* | Remove function that does not do anything useful.Bill Nottingham2007-12-131-21/+0
|/
* When retrying to locate the install CD, don't keep adding /dev/.Chris Lumens2007-12-111-4/+7
|
* Remove more md5 bitsBill Nottingham2007-12-103-301/+2
|
* Use libcheckisomd5 from standalone isomd5sum packageJeremy Katz2007-12-105-458/+22
| | | | | | Switch to using the libcheckisomd5 library from the standalone isomd5sum package. Note that we also now always check and don't differentiate "supported" ISOs any more
* Merge the FTP and HTTP methods into a single URL method.Chris Lumens2007-12-077-243/+88
| | | | | | | This removes the separate FTP and HTTP network method dialogs in the loader and replaces them with a single configuration dialog that asks the user to input a URL. It also modified the secondary config screen to prompt just for a proxy and simplifies a lot of the conversion from URL to UI and back.
* Adjust to new udev world. Use actual device names, not /tmp/<whatever>.Bill Nottingham2007-12-076-76/+58
|
* Handle CDs by actual device name, not a /tmp/cdrom device node.Bill Nottingham2007-12-071-30/+22
|
* Start udev from install init.Bill Nottingham2007-12-071-0/+5
|
* Copy /etc and /var from /mnt/runtime to the root filesystem.Bill Nottingham2007-12-071-4/+5
| | | | | | | | | Apps running in the second stage may expect to have 'normal' files in /etc or /var. By staging it this way, they can just be kept in the second stage, and copied to the first stage at runtime, rather than having to keep them in the first stage. We can't symlink to /mnt/runtime/etc or /mnt/runtime/var, because the second stage isn't writable. /etc/selinux is still symlinked, because it's huge.
* Don't #ifdef the rename for s390 only - just do it if unlink() fails.Bill Nottingham2007-12-071-8/+6
|
* Remove final traces of /tmp/ramfs usageJeremy Katz2007-12-061-7/+0
| | | | | We used to need /tmp/ramfs since /tmp was from an initrd and thus had limited writable space. With initramfs, everything is already ramfs
* Just drop driver disks into /tmp instead of /tmp/ramfsJeremy Katz2007-12-061-4/+4
|
* Don't download images into /tmp/ramfs; use /tmpJeremy Katz2007-12-063-8/+8
|
* methodstr cleanups.Chris Lumens2007-12-051-13/+29
| | | | | | Don't use /mnt/source2 anymore. /mnt/isodir is for image installs to mount whatever contains the images, and /mnt/source is always the source mount point. Also don't use methodstr where we don't have to.
* remove duplicate lineBill Nottingham2007-11-301-2/+0
|
* Add support for ext4dev hidden away behind a command line optionJeremy Katz2007-11-291-2/+2
|
* ignore translations for the loaderJeremy Katz2007-11-281-0/+1
|
* Probe for USB on more busses (dwmw2 AT infraded DOT org, #401821).Chris Lumens2007-11-271-1/+1
|
* Add linear.ko to the modules available for rescue mode (#151742).Chris Lumens2007-11-271-1/+1
|
* Correct the previous patch, we were doing the nicdelay on the wrong place. ↵Martin Sivak2007-11-201-8/+10
| | | | (#349521)
* Only run media check if we're installing off the CD (#362561).Chris Lumens2007-11-191-1/+2
|
* Initial support for block devices encrypted using LUKS/dm-crypt.David Lehman2007-11-161-1/+1
| | | | | | The class LUKSDevice, in cryptodev.py, handles the details of creation and management of the encrypted devices. RequestSpec and Device classes contain an optional LUKSDevice instance describing the device's encryption setup. There is no support for pre-existing encrypted devices and kickstart support is not present at this point.
* Fix the unused variable warning that breaks the build.Chris Lumens2007-11-151-1/+0
|
* Remove the ISA flag.Chris Lumens2007-11-152-14/+2
|
* Fix the obvious typo.Chris Lumens2007-11-151-1/+1
|
* canProbeDevices always returns 1, so remove it.Chris Lumens2007-11-153-46/+22
|
* Explicitly set mountOpts to NULL.Chris Lumens2007-11-131-0/+2
|
* Fix a traceback when building the updates partition dialog (#372011).Chris Lumens2007-11-131-1/+3
|
* Fix the build by defining a variable that was being used.Chris Lumens2007-11-081-1/+1
|
* Add the nicdelay command line option (#349521)Martin Sivak2007-11-062-0/+12
|
* move existing cvsignores to gitignore; remove ones no longer neededJeremy Katz2007-11-051-0/+0
|
* Set re-IPL device before reboot on s390xDavid Cantrell2007-11-052-4/+27
| | | | | | | | | | | At the end of installation, set the re-ipl device if the user installed to a DASD device. Determine where /boot lives and set the re-ipl device to that, then run shutdown -r. On s390x, this means that clicking the Reboot button at the end of installation means you will reboot the VM. It only works for DASD targets right now and not zFCP. Patch from Brad Hinson <bhinson AT redhat DOT com> and Jan Glauber <jang AT de DOT ibm DOT com>
* Add error handling to allocations in ourInsmodCommand() .Peter Jones2007-11-051-3/+22
| | | | Based on a patch from HARA Hiroshi.
* It's MALLOC_CHECK_, not _MALLOC_CHECK (#354131).Chris Lumens2007-10-261-1/+1
|
* Clean up after findAnacondaCD if the user provided an invalid URL so retriesChris Lumens2007-10-241-0/+4
| | | | work. Also attempt to look for a stage2.img on retry every time (#330641).
* Fix processing of ks=<whatever> ksdevice=(link|bootif). Free some moreChris Lumens2007-10-222-9/+14
| | | | memory.
* - remove sdupprintf(), use asprintf() instead.Peter Jones2007-10-2215-124/+143
|