summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Sparc bootloader config not written to /etcf12-branchDennis Gilmore2010-03-051-6/+7
| | | | | clean up sparc boot loader install so that it writes out and links into /etc correctly.
* use isSparc not isSPARCDennis Gilmore2010-03-051-1/+1
| | | | | the function to determine what machine we are is isSparc not isSPARC correct typo
* add function to get the sparc system typeDennis Gilmore2010-03-051-0/+19
| | | | | | depending on the type of SPARC machine we are running on we need to pass different flags to silo. include a function to determine what machine we are running on.
* set the bootloader to silo for sparc installsDennis Gilmore2010-03-051-0/+1
| | | | include silo as the bootloader on psarc arches
* sparc64 is a lib64 archDennis Gilmore2010-03-051-1/+1
| | | | make sure sparc64 has lib64 paths set that same as other 64 bit arches that use lib64
* Make sure that SPARC bootdisk Makefile is madeDennis Gilmore2010-03-052-1/+2
| | | | Make sure that we make a SPARC bootdisk Makefile
* Fix generation of boot.iso on SPARCDennis Gilmore2010-03-051-1/+2
| | | | | we make an install.img file not a stage2.img file anymore. make sure boot.iso is passed the right image to get an iso out.
* make sure we include sparc boot configsDennis Gilmore2010-03-051-1/+1
| | | | Include generation of SPARC Boot configs
* Sending translation for Oriyamgiri2010-01-071-50/+87
|
* Sending translation for Kannadashanky2010-01-071-48/+48
|
* Sending translation for Bengali (India)runab2010-01-071-754/+637
|
* Sending translation for Telugukkrothap2010-01-061-169/+172
|
* Sending translation for Chinese (Traditional)tchuang2009-12-081-607/+538
|
* Sending translation for Koreaneukim2009-12-081-450/+449
|
* Sending translation for Russianypoyarko2009-12-071-565/+559
|
* Sending translation for Assameseamitakhya2009-12-071-451/+463
|
* Sending translation for Czechmilankerslager2009-11-181-1492/+1505
|
* Sending translation for Malayalamanipeter2009-11-161-451/+448
|
* Sending translation for Marathisandeeps2009-11-131-486/+479
|
* Sending translation for Tamilifelix2009-11-131-450/+450
|
* Sending translation for Kannadashanky2009-11-131-456/+455
|
* Sending translation for Oriyamgiri2009-11-121-451/+450
|
* Sending translation for Telugukkrothap2009-11-121-451/+449
|
* Sending translation for Hindirajesh2009-11-121-450/+450
|
* Sending translation for Gujaratiswkothar2009-11-121-10/+14
|
* Sending translation for Punjabijassy2009-11-121-451/+463
|
* Sending translation for Czechjarekapolenar2009-11-101-1857/+1985
|
* Sending translation for Italianperplex2009-11-071-611/+613
|
* New version.David Cantrell2009-11-063-7/+10
|
* Correct modopts initialization in loader (take 2) (#531932).David Cantrell2009-11-061-10/+33
| | | | | | | | | | | | | The edc665e6fa2ba71e89eb83412738622e916c3a05 commit prevented SIGSEGV but changed behavior of modopts to where we'd never get any values in modopts. What needed to happen is the else clause in addOption() needed to initalize the .options array and add in the option value. That wasn't happening, so strcat() calls in writeModulesConf() were causing SIGSEGV. This patch also adds some realloc() and malloc() checks. Tested with "radeon.nomodeset=1" and without that parameter on x86_64.
* New version.David Cantrell2009-11-053-3/+6
|
* Set BETANAG to 0, we're nearing the actual release.David Cantrell2009-11-051-1/+1
|
* New version.David Cantrell2009-11-043-7/+10
|
* Correctly initialize modopts in loader (#531932).David Cantrell2009-11-041-10/+12
| | | | | | Under certain conditions, modopts is never initialized. This patch fixes up that while preserving the existing functionality introduced with 29e18c35.
* New version.Chris Lumens2009-11-033-3/+8
|
* Remove "anaconda" from attributes to skip (#532612, #532737).Chris Lumens2009-11-031-23/+22
| | | | | | When we dump the anaconda object in python-meh, the object won't be named "anaconda". It'll be named "obj". python-meh will stick that on the front of every attribute, so we need to remove "anaconda".
* Sending translation for Greekpkst2009-11-031-11/+12
|
* Fix status for and consolidate handling of '-' in vg/lv names. (#527302)David Lehman2009-11-021-11/+22
|
* Sending translation for Greekpkst2009-11-011-3141/+2348
|
* New version.Chris Lumens2009-10-303-5/+20
|
* Use the new anaconda image in fedora-logos (#529267).Jesse Keating2009-10-301-1/+1
|
* Also mark the Back button as translatable (#526925).Chris Lumens2009-10-301-1/+1
|
* Call udev_trigger with "change", not "add", to populate udev db. (#531052)David Lehman2009-10-301-2/+2
| | | | | The reason this matters is that device-mapper devices' udev rules don't respond to "add" events.
* Allow callers of udev_trigger to specify the action string.David Lehman2009-10-301-2/+2
|
* Add the bcm5974 kernel module needed for some touchpads (#474225).Chris Lumens2009-10-301-1/+1
|
* Fix "resize failed: 1" errors for ext2/ext3/ext4 (#517491).David Cantrell2009-10-291-3/+25
| | | | | | | | | | | | | | | | The following install test case has been failing: https://fedoraproject.org/wiki/QA:Testcase_Anaconda_autopart_%28shrink%29_install The problem was with the minSize property in Ext2FS. We use resize2fs to get the minSize for ext2/3/4 filesystems, which is good because resize2fs accounts for additional things an extX volume may need. The problem is the value it reports is in blocks. We have to convert those blocks to bytes, then to megabytes, then round up to account for any fractional megabytes. Use dumpe2fs to get the block size and use resize2fs as we have been, but modify the calculation of size. Also the _setTargetSize() method in FS needed a change. minSize can be less than or equal to newsize, not just less than.
* Put the icon back on the Back button on livecd installs (#526925).Chris Lumens2009-10-291-2/+64
|
* Use /dev/mapper/live-osimg-min instead of the old device node name (#526789).Chris Lumens2009-10-292-2/+2
|
* Sending translation for Gujaratiswkothar2009-10-291-448/+443
|
* New version.David Cantrell2009-10-283-3/+6
|