summaryrefslogtreecommitdiffstats
path: root/anaconda
Commit message (Collapse)AuthorAgeFilesLines
* Dirty (temporary) hack to copy udev rules from updates.img into place.David Lehman2009-02-261-0/+4
|
* Updates to make existing code use the new storage module.David Lehman2009-02-231-2/+1
|
* Pick up pyblock if it exists in block/ on an updates.img.David Cantrell2009-02-201-1/+1
|
* Make sure the pyparted package ends up in the updates path.Chris Lumens2009-02-121-1/+1
|
* Tell the user that text mode doesn't support much when suggesting VNC.Chris Lumens2009-02-091-1/+4
|
* For python2.6, our showwarnings function must take a line= parameter.Chris Lumens2009-02-021-2/+2
|
* Fix cdrom install on machines with no network devicesWill Woods2009-01-291-1/+1
| | | | | | | On machines that automatically got stage2 from cdrom, requiresNetworkInstall was checking /mnt/source/Packages to see if the CD was available as an installation source. But it's mounted at /mnt/stage2 at this point, so check there instead.
* Revert "Port the dlabel feature from RHEL5 bug #316481 into Fedora (#436951)"Jeremy Katz2009-01-081-4/+0
| | | | | | This reverts commit 89652b6fbe65e5e7922d743a99b07104d071ef42. This patch was not reviewed on the list and does not fix any emergency build breakage. Thus, per policy is being reverted.
* Port the dlabel feature from RHEL5 bug #316481 into Fedora (#436951)Martin Sivak2009-01-081-0/+4
|
* Fix a traceback in checking for network install (ricky AT fedoraproject.org).Chris Lumens2008-12-301-1/+1
|
* methodstr -> self.methodstrDavid Cantrell2008-12-221-3/+3
|
* When using anaconda with kickstart file with UI mode - do not show the VNC ↵Martin Sivak2008-12-181-1/+1
| | | | question (#476548)
* Let X tell us when it's launched rather than just sleeping.Adam Jackson2008-12-161-4/+26
| | | | X will send us SIGUSR1 when it's ready to accept connections.
* Write anacdump.txt upon receipt of SIGUSR2 (from clumens).David Lehman2008-12-081-1/+13
| | | | | This is the patch Chris posted, modified to use inspect.stack to generate the traceback.
* Prevent network install when no network devices are found (#470144)David Cantrell2008-12-051-0/+21
| | | | | | | | | | | | A corner case, but if a user boots up with boot.iso and has no network devices available, we get all the way to package selection and user is told they cannot continue. This is after all of the other screens and partitioning. In the welcome screen, perform a check to see if the user has booted the installer to a point where it requires a network install for the packages. If so, tell the user they cannot continue and exit the installer.
* Make sure we look up the IP address for the correct device (#469439)David Cantrell2008-11-031-0/+1
| | | | | | | | | | | | | | | | | | | The VNC launch code in vnc.py needed an update to work better with NetworkManager. When collecting the hostname and IP address, it was assuming the first device in the netdevices list is our active NIC, which may or may not be true. Added getActiveNetDevs() in network.py to ask NetworkManager for a list of all currently configured interfaces. Return a list of device names. A list seems a bit pointless, but I'd like to have this in place now for future improvements where we might need to handle more than one active NIC during installation. After all, NM can do that. The message reported by anaconda once VNC is ready will contain the FQDN:DISPLAY_NUMBER (IP ADDRESS), if it can. If it can't find your IP address, it leaves that out. If it can't find your hostname, it also leaves that out.
* Don't sleep(5) after xrandrAdam Jackson2008-10-291-1/+0
| | | | It won't help, I promise.
* Force DPI to 96 even harder (#458738)Adam Jackson2008-10-291-2/+3
| | | | | RANDR 1.2 drivers will occasionally decide they don't care what you said on the command line. Fortunately, we have a bigger gun.
* Don't try to switch VT to the one that X is onAdam Jackson2008-10-291-1/+0
| | | | X will do that itself, tyvm.
* Fix various syntax errors caught by PyCheckerHans de Goede2008-10-291-3/+3
| | | | Fix various syntax errors caught by PyChecker
* Catch more X failures and fallback to text (#467158).Chris Lumens2008-10-241-1/+1
|
* Don't switch to tty6 on vnc installs.Chris Lumens2008-10-231-1/+1
|
* Make sure we handle the /tmp/method file for FTP correctly (#467753).Chris Lumens2008-10-221-6/+15
|
* Force DPI to 96 when launching X. (#458738)Adam Jackson2008-10-151-1/+1
| | | | | As we're still fixed layout, we may as well force font scaling to something predictable.
* Work around gtk2 bug rh465541Hans de Goede2008-10-031-5/+5
| | | | | | | | | | | gtk2-2.14.2 and newer has a bug where the return value of gtk.gdk.get_width() does not change after gtk has been initialized, as we call xrandr to change the resolution this is a problem. This patch works around this by not initializing gtk before calling xrandr, this means that we will call xrandr -s even if the resolution already is what we want (usually 800x600) but chances of that being the case are small anyways.
* Look for xrandr in the search path.Chris Lumens2008-09-191-3/+3
|
* Do not try to start hald or dbus-daemon from anaconda.David Cantrell2008-09-151-61/+0
| | | | | hald and dbus-daemon are always started from init, so don't try to start them in anaconda anymore.
* Add ibft flag to ease in testing.Hans de Goede2008-09-151-0/+5
| | | | | Forward port of rhel-5 patch from pjones, commit-id: 5a44a5a6bc90fdf056db1e9e2d4191703387c15f
* Remove last vestiges of rhpxl and pirut.Chris Lumens2008-09-031-2/+1
|
* Expert mode was disabled in 2004. Remove it now.Chris Lumens2008-08-141-2/+1
|
* Handle 'rescue' and %post in rescue modeAlexander Todorov2008-08-111-0/+41
| | | | All changes to handle the new rescue command and %post scripts when in rescue mode.
* Eject the CD/DVD if we booted off a boot.iso as well (#442088).Chris Lumens2008-08-041-0/+4
|
* Remove one last reference to minstg2.img.Chris Lumens2008-07-241-8/+2
|
* When there is text mode specified in the kickstart file, disable the vnc ↵Martin Sivak2008-07-211-1/+5
| | | | question (#455612)
* Support xdriver= againJeremy Katz2008-07-171-0/+19
| | | | | | | | | | | For now, we need to be able to support xdriver= as sometimes, drivers are broken and people want vesa instead. This is kind of lame and it'd be nice if we didn't have to carry such hacks. So take the argument and write out a minimal xorg.conf if it's given. This is all hidden away in the anaconda class, although arguably it could belong in instdata instead. But if it's in instdata, more things might actually try to depend or care about it. And we don't want that.
* don't change from cmdline to textmode on lowmem systemsNiels de Vos2008-07-171-1/+1
| | | | | | | this one-liner should make installation in cmdline possible for systems with little RAM. Currently if little RAM is detected, anaconda changes to textmode. Running in cmdmode should also be possible. This patch is completely untested for now, but please verify.
* Update the VNC over text mode patch, so it correctly passes the password to ↵Martin Sivak2008-07-171-1/+1
| | | | VNC server (#455612)
* Ask the user if he wants to use VNC instead of text mode (#453551)Martin Sivak2008-07-151-0/+11
|
* Remove old livecd flagJeremy Katz2008-06-301-5/+1
| | | | | | The livecd flag was for "I'm building a livecd", ie with kadischi, not for doing a livecd install. Keeping the old flag around was just confusing, especially as kadischi is no longer used/maintained
* Explicitly setup livecd install by passing --liveinst to anacondaJeremy Katz2008-06-301-0/+5
| | | | | We don't do things based on the method string anymore, so explicitly specify that we're doing a livecd based install
* Rescue mode no longer needs access to a methodstr (#453044).Chris Lumens2008-06-271-4/+0
|
* Don't pass methodstr into the backend and instdata.Chris Lumens2008-06-181-53/+9
|
* Add the --stage2= and --repo= options to anaconda.Chris Lumens2008-06-181-2/+5
|
* Remove support for RHupdates. updates.img is the way to go now.Chris Lumens2008-06-181-16/+2
|
* Don't do the "exec shell on tty1" thing in vnc if we've got virtual terminals.Peter Jones2008-06-051-4/+11
|
* 2008-06-04 Ján ONDREJ <ondrejj@salstar.sk> (via ondrejj@fedoraproject.org)Ján ONDREJ2008-06-041-131/+51
| | | | * po/sk.po: Typo fix.
* Activate autorepeat for GUI installs.Joel Andres Granados2008-04-281-1/+1
| | | | | Chose arinterval 50 because it seemed fast enough for text autorepeat, and slow enough for scrolling autorepeat.
* Handle .utf8 vs .UTF-8 (#443408)Jeremy Katz2008-04-221-0/+2
| | | | | anaconda expects the .UTF-8 form of locales but gdm is now using .utf8. So if one is passed, do the massaging appropriately.
* Slower machines may take more than five seconds for hal to start (#442113)Jeremy Katz2008-04-111-1/+9
|
* Work around GL crashes in anaconda X by disabling them.Jesse Keating2008-04-051-1/+1
|