summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Offer physical NIC identification in stage 1 (#261101)David Cantrell2008-07-223-15/+108
| | | | | | | | | | This has been requested for a while. Some people have wanted the ability to do an 'ethtool -p' from stage 1 so they can figure out what NIC port to use. I can understand arguments for this feature, but I have still tried to make it more or less non-invasive. A new button is on the dev selection screen called Identify. Self-explanatory from there.
* Merge branch 'save-to-bugzilla'Chris Lumens2008-07-2210-533/+1246
|\
| * If there's no network, attempt to bring it up before filing a bug.Chris Lumens2008-07-221-0/+7
| |
| * Require python-bugzilla.Chris Lumens2008-07-222-1/+3
| |
| * Add the bug filing abstraction layer to anaconda.Chris Lumens2008-07-221-0/+240
| | | | | | | | | | | | | | This may not be the best final resting place for this code, but I don't expect there to be any users outside of anaconda for now so it's not worth the extra complication of findig a source control home and new package for a single source file. This could all change in the future, of course.
| * Support an abstract bug filing layer.Chris Lumens2008-07-224-41/+62
| | | | | | | | | | | | | | | | Different products and distributions could support completely different bug filing system (or none at all, for that matter) so support an abstraction that allows us to use multiple kinds of bug files. We still need to commit that abstraction somewhere and also make sure we allow full customization through the product.img.
| * Rework the exn save UI to be a notebook instead of one large table.Chris Lumens2008-07-222-317/+388
| | | | | | | | | | This decreases the widget load we were seeing from having so much crammed into one single page.
| * Add support for saving via scp back in.Chris Lumens2008-07-224-41/+440
| |
| * Add support for filing tracebacks directly into bugzilla.Chris Lumens2008-07-224-40/+175
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch adds support for save to bugzilla, using the python-bugzilla module. We get the bugzilla URL from product.bugUrl and require the user to already have a valid account with that bugzilla instance. That should cut down on potential abuse. To cut down on the number of possible duplicates, we hash the file name, function name, and line of each frame in the traceback and store that hash in the bug itself. Before filing a new bug, we query for any bugs containing that hash value. If found, we simply add the traceback as a new attachment and put the user on the CC list. If not found, we create a new bug. Either way, the user is encouraged to visit their bug and make a more meaningful comment.
| * Add a class that represents anaconda exception dumps.Chris Lumens2008-07-221-159/+170
| | | | | | | | | | | | | | The purpose of this class is to package up the Python representation of a traceback along with some methods for doing all the dumping and mangling that we need to do. In particular, now there's fewer values to pass around to the various functions in the exn saving dialogs.
| * Remove the code to save exceptions over scp.Chris Lumens2008-07-224-178/+5
| |
* | Specify a default cio_ignore parameter for s390x (#253075)David Cantrell2008-07-222-2/+2
|/ | | | | | | | | To help speed up the boot time of VM and LPAR s390x instances, set a default cio_ignore parameter to ignore all devices except the system console. The CMS conf file is used anyway to specify all devices to use, so setting the cio_ignore parameter to a reasonable default speeds things up.
* Fix getting the stage2 image when doing kickstart installs.Chris Lumens2008-07-221-9/+28
|
* 2008-07-22 Oron Peled <oron@actcom.co.il> (via oron@fedoraproject.org)Oron Peled2008-07-221-55/+88
| | | | * po/he.po: Yet some more Hebrew.
* Convert package names to unicode before displaying the error message (#446826).Chris Lumens2008-07-211-0/+3
|
* When there is text mode specified in the kickstart file, disable the vnc ↵Martin Sivak2008-07-213-3/+8
| | | | question (#455612)
* 2008-07-19 Igor Pires Soares <igorsoares@gmail.com> (viaIgor Pires Soares2008-07-191-1916/+1772
| | | | | | igor@fedoraproject.org) * po/pt_BR.po: Minor fix
* 2008-07-19 Victor Ibragimov <victor.ibragimov@gmail.com> (viaVictor Ibragimov2008-07-191-137/+137
| | | | | | tajikfedora@fedoraproject.org) * po/tg.po: Updated Tajik Translation
* 2008-07-19 Victor Ibragimov <victor.ibragimov@gmail.com> (viaVictor Ibragimov2008-07-191-0/+6336
| | | | | | tajikfedora@fedoraproject.org) * po/tg.po: NEW: Tajik Language added by Victor Ibragimov
* We no longer add the fstype to the hd: method in loader.Chris Lumens2008-07-183-5/+19
|
* Check DHCP by default on the text network configurator screen.Chris Lumens2008-07-181-1/+1
|
* Support booting from FCP-attached CD/DVD drive on s390 (#184648)David Cantrell2008-07-178-250/+453
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The s390 can boot El Torito CD or DVD images iff they are attached by zFCP, used as the IPL device, and contain a specially formatted boot image on the disc. IBM provided the tool to combobulate the boot image together and a description of the desired execution path. When you boot on s390, the linuxrc.s390 will look to see if you IPL'ed from a CD or DVD. If you did, it will ask if you also want to install from that device. If you answer yes (y, Y, or any case spelling of 'yes'), the script will bring the IPL device online so the kernel assigns it a device name. Then it skips over the network configuration and starts you in to loader. If you tell it no or did not IPL from a CD or DVD, it'll launch the missiles--wait, no, I mean you get the normal network installation questions before loader starts. I have no way to test this as it requires the following changes: (1) Rel-eng needs to build s390x media with -no-emul-boot and specify the new cdboot.img file on that platform. I have already contacted rel-eng about making this change. (2) I don't have a CD-ROM drive in my mainframe. IBM does and testing is all falling on them. IBM knows this...maybe. I explain all of this like anyone else on the team will ever get a chance to experience it. So there you have it. A letter opener.
* New version.anaconda-11.4.1.16-1Chris Lumens2008-07-171-1/+16
|
* Support xdriver= againJeremy Katz2008-07-172-0/+21
| | | | | | | | | | | 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.
* Fix loadkeys on serial consoleNiels de Vos2008-07-171-1/+1
| | | | | | | | | | | when running anaconda (kickstart) over a serial linedisplay (two line output device) loadkeys does not function. The output of anaconda is writing to /dev/console, which is achieved by kernel parameter "console=ttyS1". If user input is needed (ks.cfg-%pre) the layout of the keyboard does not match the settings in ks.cfg. Obviously the loadkeys of anaconda does not function correctly if the output is a serial port. This patch fixes this by not using /dev/console, but /dev/tty0 (the master-tty).
* 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)
* Set interface MTU if user specified mtu= param (#435874)David Cantrell2008-07-163-8/+84
| | | | | If the user passed mtu=X as a boot parameter, set the interface MTU to that value before configuring the network.
* Bring up the network before attempting to mount the NFSISO source.Chris Lumens2008-07-161-5/+8
|
* Catch mount errors when adding NFS repos (#455645).Chris Lumens2008-07-161-1/+10
|
* Fix a traceback when trying to save exceptiona via scp.Chris Lumens2008-07-161-1/+2
|
* Give a progress bar when cleaning up after upgrades (#208725).Chris Lumens2008-07-161-17/+21
|
* Look for repo config files in /etc/anaconda.repos.d.Chris Lumens2008-07-162-2/+4
| | | | | | | | | yum wants to look in installroot+/etc/yum.repos.d for config files, which means it ends up looking under /mnt/sysimage. On fresh installs this is no problem because that path does not exist, but on upgrades it does. We end up with the wrong repo config objects in the upgrade case. The least hacky fix is to change where we store repo config files to a path that likely won't exist on installed systems.
* baseurl should be a list, mirrorlist should not.Chris Lumens2008-07-161-2/+2
|
* It's called crypto_blkcipher.ko these days.Chris Lumens2008-07-162-3/+3
|
* New version.anaconda-11.4.1.15-1David Cantrell2008-07-151-1/+9
|
* Declare variables before trying to use them (#455361).Chris Lumens2008-07-151-0/+2
|
* Fix a typo.Chris Lumens2008-07-151-1/+1
|
* Add a text-mode network configurator dialog so default installs can work.Chris Lumens2008-07-152-4/+277
|
* Use the right format for the NFS methodstr, but harder this time.Chris Lumens2008-07-151-1/+1
|
* Ask the user if he wants to use VNC instead of text mode (#453551)Martin Sivak2008-07-152-9/+24
|
* Fix a segfault when displaying the wrong CD message.Chris Lumens2008-07-141-4/+4
|
* Use the right format for the NFS methodstr.Chris Lumens2008-07-141-1/+1
|
* Point the upd-instroot script the the directory where all the FAK pluginsJoel Andres Granados2008-07-141-1/+1
| | | | live.
* New version.anaconda-11.4.1.14-1Chris Lumens2008-07-111-1/+28
|
* Remove an extra tab that was causing problems with the Iloko translation.Chris Lumens2008-07-111-1/+1
|
* Use the right stage2.img path for kickstart URL installs (#452140).Chris Lumens2008-07-111-4/+9
|
* Convert package errors to unicode before displaying them (#441200).Chris Lumens2008-07-111-6/+12
|
* Display a status message while waiting for the CD to become ready.Chris Lumens2008-07-111-0/+9
|
* Fix window title to be the same as all others.Chris Lumens2008-07-111-1/+1
|