1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
|
2004-11-08 Jeremy Katz <katzj@redhat.com>
* bootloader.py: remove unneeded import of deprecated whrandom module
* iw/bootloader_main_gui.py
(MainBootloaderWindow.changeBootloaderCallback): Fix syntax.
* loader2/modules.c (lateModuleSort): Fix stack corruption.
* text.py (InstallInterface.run): Fallback to English for
languages that can't do text-mode (#138308)
2004-11-08 Karsten Hopp <karsten@redhat.com>
* loader2/linuxrc.s390: Don't ask for input if PORTNAME or CTCPROT
are already set. Use defaults if RUNKS is set for kickstart
installations
2004-11-07 Jeremy Katz <katzj@redhat.com>
* anaconda.spec: Bump version.
* gui.py (MnemonicLabel.__init__): Allow setting of label
alignment on creation.
* iw/network_gui.py (NetworkWindow.editDevice): Get rid of
warning from pygtk
* Makefile.inc (PYTHON): devel now has python 2.4
* loader2/loader.c (parseCmdLineIp): Add patch from Bastien Nocera
to support parsing of pxelinux IPAPPEND (#134054)
* scripts/scrubtree: Clean up handling of binaries that we
want busybox to override. Inspired by #137948.
* dispatch.py (installSteps): Add handleMiscPackages steps.
* installclass.py (BaseInstallClass.setSteps): Likewise.
* upgradeclass.py (InstallClass.setSteps): Likewise.
* packages.py (handleMiscPackages): Add a step to do all of the
miscellaneous package selection based on installer selections
instead of doing them in doPreInstall so that our needed CD list
is correct (#122017)
* loader2/urls.c: Mark strings for translation (#137197)
* iw/bootloader_main_gui.py: Don't reference boot
disks anymore (#135851)
* iw/bootloader_advanced_gui.py: Likewise.
* textw/bootloader_text.py: Likewise.
* iw/network_gui.py (NetworkWindow.editDevice): Add hardware
address as another way to figure out which device is which (#131814)
* textw/network_text.py (NetworkDeviceWindow.runScreen): Likewise.
2004-11-05 Jeremy Katz <katzj@redhat.com>
* isys/isys.py (readJFSLabel_int): Fix exception handling.
(readXFSLabel_int): Likewise.
(readSwapLabel_int): Likewise.
2004-11-04 Jeremy Katz <katzj@redhat.com>
* anaconda.spec: Bump version.
* partitions.py (Partitions.writeKS): Have to have sizes as
integers (#138109)
* loader2/modules.c (lateModuleSort): Implement an additional sort
to move drivers to the end of our list of drivers to load. This
is handy for, eg, fibre channel so that it doesn't end up at the
front of the list so that people don't get confused with sda being
their FC disk. Also, put ibmvscsic in the list due to #137920
* loader2/module-info: More qlogic fibre channel adapters
* upgrade.py (upgradeFindPackages): Key iiimf-le-canna off of
kinput2-canna-wnn6 instead of just kinput2 (#129218)
2004-11-03 Jeremy Katz <katzj@redhat.com>
* iw/network_gui.py (NetworkWindow.setupDevices):
* textw/network_text.py (NetworkDeviceWindow.runScreen):
Sync behavior of onboot between gui/text (#138011)
* autopart.py (getAutopartitionBoot): Use
iutil.hasiSeriesNativeStorage instead of iutil.hasIbmSis()
* partitions.py (Partitions.sanityCheckAllRequests): Likewise.
* iutil.py (hasiSeriesNativeStorage): Rename from hasIbmSis(),
check for ipr as well as ibmsis.
* packages.py (copyAnacondaLogs): Set permissions on logs (#137963)
* scripts/scrubtree: Don't use busybox shutdown, poweroff, or
reboot (#137948)
2004-11-03 Karsten Hopp <karsten@redhat.com>
* loader2/linuxrc.s390: Check input for CTCPROT, remove ctc-tty
from selection
2004-11-02 Jeremy Katz <katzj@redhat.com>
* rescue.py (runRescue): Fix traceback with going back in the
network config (#137844)
2004-11-02 Karsten Hopp <karsten@redhat.com>
* loader2/linuxrc.s390: Ask for CTCPROT even if MTU is already
specified (mainframe)
2004-11-02 Karsten Hopp <karsten@redhat.com>
* loader2/linuxrc.s390: Try harder to find out the LCS
interface name
2004-11-02 Jeremy Katz <katzj@redhat.com>
* packages.py (handleX11Packages): Handle making sure gdm is
installed and don't get TWM started if people don't
install GNOME (#132743)
* isys/isys.py (readJFSLabel_int): Better handling of errors while
trying to read the label (#137846).
(readXFSLabel_int): Likewise.
(readSwapLabel_int): Likewise.
2004-11-02 Tim Waugh <twaugh@redhat.com>
* loader2/hdinstall.c (mountHardDrive): Pass the correct pointer to
free() (bug #137533).
2004-10-29 Kristian Høgsberg <krh@redhat.com>
* mini-wm.c (main): Write acknowledge token back to anaconda to
indicate successful connection to the X server.
* anaconda (startMiniWM): Wait for token before launching other X
clients (#108777).
2004-10-29 Jeremy Katz <katzj@redhat.com>
* loader2/net.c (getWirelessConfig): Allow 128-bit WEP keys (#137447)
2004-10-27 Jeremy Katz <katzj@redhat.com>
* upgrade.py (upgradeFindPackages): Fix traceback on cjk
upgrades (#137345)
2004-10-26 Jeremy Katz <katzj@redhat.com>
* anaconda.spec: Bump version.
* partedUtils.py (DiskSet.openDevices): Don't die if we don't have
an intf set up yet (#130123, #137239)
* upgrade.py (upgradeFindPackages): firefox replaces
mozilla/netscape (#137244)
2004-10-26 Jeremy Katz <katzj@redhat.com>
* anaconda.spec: Bump version.
* kickstart.py (KickstartBase.definePartition): More fixing for
size of zero (#137120)
* scripts/mk-images: Use busybox sleep for s390 instead of
coreutils sleep to avoid needing librt and libpthread (#131167)
2004-10-25 Jeremy Katz <katzj@redhat.com>
* loader2/net.c (setKickstartNetwork): Handle onboot
properly (#136903)
* lang-table: Punjabi shouldn't try to do text mode (#137030)
2004-10-24 Jeremy Katz <katzj@redhat.com>
* scripts/mk-images.ia64 (IDEMODULES): Add sgiioc4 module for
Altix cdrom drive (#136730)
2004-10-21 Bill Nottingham <notting@redhat.com>
* scripts/mk-images: forward port pci.ids trimming from taroon-branch
* utils/trimpciids: new file
2004-10-20 Jeremy Katz <katzj@redhat.com>
* anaconda.spec: Bump version.
* scripts/mk-images.ppc: Update to work with new mkzimage so we
get a netboot.img again (#125129)
2004-10-20 Jeremy Katz <katzj@redhat.com>
* anaconda.spec: Bump version.
2004-10-19 Karsten Hopp <karsten@redhat.com>
* loader2/linuxrc.s390: make sure to lowercase SUBCHANNELS sourced
from the .parm/.conf file, too
2004-10-19 Jeremy Katz <katzj@redhat.com>
* anaconda.spec: Bump version.
* loader2/linuxrc.s390: Ensure OSA addresses are lowercase so the
kernel will like them (#133190)
* autopart.py (doAutoPartition): Don't hard code VG name for
auto-partitioned volume groups as VolGroup00 (#134263)
* partRequests.py (VolumeGroupRequestSpec.__init__): Add autoname
hack for autopart + lvm.
* packages.py (handleX11Packages): Make sure that we don't do a
graphical startup if people run out of space and then go back to
unselect stuff (#135895)
* scripts/upd-instroot: Change filenames for Indic fonts
2004-10-18 Jeremy Katz <katzj@redhat.com>
* anaconda.spec: Bump version.
Rebuild against newer bogl to hopefully fix CJK text installs
* scripts/upd-instroot: Add Bluecurve icon theme index, hopefully
fixes the icon theme to be correct.
* bootloader.py: Add a trailing newline to /etc/sysconfig/kernel
* loader2/urlinstall.c: When using the local stage2.img shortcut,
ensure that an hdlist exists in the tree they point at to catch
typos sooner (#135603, #117155, #120101)
* kickstart.py: Fix traceback using %post logging (Gijs
Hollestelle, #136154)
2004-10-17 Jeremy Katz <katzj@redhat.com>
* anaconda.spec: Bump version.
* iw/partition_gui.py: Fix font size to fit a little bit
better (#135731)
* partitions.py (Partitions.writeKS): Write out size=0 (#135714)
* kickstart.py (KickstartBase.definePartition): Allow partition
size to be zero to work better with LVM autopart (#135714)
2004-10-15 Jeremy Katz <katzj@redhat.com>
* iw/driveorderwidget.py: Remove empty row leading
to traceback (#135944)
* urlinstall.py: Replace "%" in urls with "%%" to avoid format
string problems (#135929)
* rescue.py (runRescue): bind mount /dev (#135860)
* lang-table: Set Dutch and Danish keyboards by default (#135839)
2004-10-14 Jeremy Katz <katzj@redhat.com>
* loader2/module-info: Add s2io 10GbE driver
* anaconda.spec: Bump version.
2004-10-14 Karsten Hopp <karsten@redhat.com>
* loader/linuxrc.s390: Hardcode LCS interface to eth0 (workaround
until fix with sysfs interface is available)
2004-10-14 Jeremy Katz <katzj@redhat.com>
* scripts/upd-instroot: Add fonts for ta, gu, hi, bn and pa (#119283)
* isys/lang.c (bterm_main): Enable bterm again for testing (#113910)
* loader2/hdinstall.c: Fix segfault when using biospart for hard
drive kickstart install. Patch from Rez Kabir (#135609)
2004-10-13 Jeremy Katz <katzj@redhat.com>
* bootloader.py: Write out /etc/sysconfig/kernel with the default
kernel type and to change the bootloader default on new kernel
installation (#135161)
2004-10-13 Karsten Hopp <karsten@redhat.com>
* scripts/mk-images: add /etc/pam.d/remote for telnet logins
(mainframe)
2004-10-12 Jeremy Katz <katzj@redhat.com>
* anaconda.spec: Bump version
* autopart.py (doAutoPartition): Be more certain we have
one of "our" LVM partitions (#135440)
* scripts/mk-images.x86_64:
* scripts/mk-images.i386:
Remove localboot option from syslinux.cfg for diskboot.img (#135263)
* upgrade.py (upgradeFindPackages): Handle the great input method
switch (#129218)
* network.py (Network.__init__): Don't save the hwaddr
for qeth (#135023)
* packages.py (doPostInstall): Add rhgb in post-install, not
doInstall (from msw on anaconda-devel-list)
2004-10-12 Bill Nottingham <notting@redhat.com>
* loader2/module-info: add ahci, sx8
2004-10-11 Bill Nottingham <notting@redhat.com>
* scripts/genlocalelist.py: reverse norwegian blacklisting (#129453)
* loader2/module-info: add sata_nv, sata_sx4, ixgb; sort sata list
2004-10-07 Jeremy Katz <katzj@redhat.com>
* anaconda.spec: Bump version.
* fsset.py (FileSystemSet.makeLVMNodes): Make sure the DM node
doesn't exist before we create it (#124092)
* textw/packages_text.py: Sort packages in the group
details screen (#123437)
* scripts/upd-instroot (KEEPFILEGR): Add prelink config (#117867)
2004-10-06 Jeremy Katz <katzj@redhat.com>
* iw/lvm_dialog_gui.py (VolumeGroupEditor.updateLogVolStore):
Don't show "0" as a mountpoint for an LV that's not being mounted
anywhere (#134867)
* partRequests.py (RequestSpec.sanityCheckRequest): Call
sanityCheckMountPoint with new option
* partIntfHelpers.py (sanityCheckMountPoint): Don't allow
formatting unless they specify a mountpoint on pre-existing
partitions (#134865)
* iw/network_gui.py (NetworkWindow.getScreen): Make Bengali fit a
little bit better (#134762)
2004-10-06 Karsten Hopp <karsten@redhat.com>
* partedUtils.py: Fix traceback with unpartitioned FCP disks (mainframe)
2004-10-05 Jeremy Katz <katzj@redhat.com>
* anaconda.spec: Bump version:
* kickstart.py (KickstartBase.readKickstart): Have to reset things
when we enter a new scriptlet to break multiple scriptlet with
different interpreters (#134707)
* isys/devnodes.c: Working scsi disk nodes again (#134709)
2004-10-04 Jeremy Katz <katzj@redhat.com>
* anaconda.spec: Bump version
* scripts/upd-instroot (PACKAGES): Add selinux-policy-targeted so
that text-mode installs will have working SELinux (#134549)
* kickstart.py (KickstartBase.readKickstart): Handle having a
%include inside a scriptlet. (#120252)
* iw/zfcp_gui.py: Fix zfcp help tag
(ZFCPWindow.getScreen): Don't change fcp devs until going forward.
2004-10-04 Jeremy Katz <katzj@redhat.com>
* anaconda.spec: Bump version.
* isys/devnodes.c: Add support more than 128 SCSI disks
(#134575).
* dispatch.py (installSteps): Remove my new typo.
* partRequests.py (LogicalVolumeRequestSpec.getDevice): Fix
changing of VG name carrying through to boot loader setup (#132213)
* partitions.py (Partitions.writeKS): Include PPC PReP boot
partition (#133934)
* kickstart.py (KickstartBase.definePartition)
Allow specifying the PPC PReP Boot partition as "part prepboot"
* kickstart.py (KickstartBase.setPackageSelection): Fix a thinko
in the arch-specific case. Also, add arch-specific removal (#133396)
* lang-table: Fix Polish (#134554)
* dispatch.py (installSteps):
* installclass.py (BaseInstallClass.setSteps):
* upgradeclass.py (InstallClass.setSteps):
Add copylogs step.
* packages.py (copyAnacondaLogs): Copy /tmp/anaconda.log and
/tmp/syslog to /var/log/anaconda.log and /var/log/anaconda.syslog
so that they exist post-install (#124370)
* kickstart.py: Add logging of kickstart scripts with --log to
%post/%pre, etc. Note that the filename is relative to use of
--chroot or not. (#124370)
2004-10-04 Mike McLean <mikem@redhat.com>
* scripts/pkgorder: Add some command line options: --file <f> to
write to a file instead of stdout, --debug to increas the rpm
verbosity, --product to set the product path.
2004-10-04 Karsten Hopp <karsten@redhat.com>
* loader2/linuxrc.s390: fix LCS PORTNAME
2004-10-04 Jeremy Katz <katzj@redhat.com>
* iutil.py (makeDriveDeviceNodes): Create more RAID devs (#134438)
2004-10-01 Jeremy Katz <katzj@redhat.com>
* anaconda.spec: Bump version.
* installclass.py (BaseInstallClass.setZFCP): Add method for use
in kickstart setting of zfcp config.
* kickstart.py (KickstartBase.doZFCP):
Add syntax for defining zfcp volumes in kickstart.
Use --devnum=, --scsiid=, --wwpn=, --scsilun=, --fcplun=.
All are required. (#130070, #133288)
(KickstartBase.doAutoPart): Skip zfcpconfig (#133288)
(KickstartBase.definePartition): Skip zfcpconfig (#133288)
* isys/nfsmount.c (HAVE_NFSV3): Let's use NFSv3. Will fix using
the DVD iso via nfsiso (#122032)
* loader2/module-info: Fix megaraid_mbox module name (#134369)
* loader2/driverdisk.c: Another uninitialized variable (#133996)
* scripts/upd-instroot (PACKAGESGR): Actually add the zh_CN fonts
package (#133330)
2004-09-30 Jeremy Katz <katzj@redhat.com>
* anaconda.spec: Bump version.
* po/anaconda.pot, po/*.po:
refresh-po
* installclasses/workstation.py:
* installclasses/rhel_ws.py:
Install compat-arch-support and compat-arch-devel-support
by default (#133514).
s/OpenOffice/OpenOffice.org/
Mozilla isn't the web browser now.
* installclasses/personal_desktop.py:
* installclasses/server.py:
* installclasses/rhel_as.py:
* installclasses/rhel_es.py:
* installclasses/rhel_desktop.py:
Install compat-arch-support by default (#133514)
s/OpenOffice/OpenOffice.org/
Mozilla isn't the web browser now.
* installclasses/rhel_ws.py:
* installclasses/rhel_desktop.py:
Should say OpenOffice.org, not OpenOffice.
* upgrade.py (upgradeFindPackages): If this is RHEL, warn if
they're upgrading from < RHEL 3 (#134523)
* fsset.py (FileSystemSet.makeLVMNodes): Try to fix upgrade
traceback (#134258)
* loader2/net.c: Make changing the DNS server work (#122554)
2004-09-30 Paul Nasrat <pnasrat@redhat.com>
* findpackageset.py: Improved arch handling (#133045)
* findpackageset.py: Fix thinko with missing rpm.ts (#133045)
2004-09-29 Jeremy Katz <katzj@redhat.com>
* anaconda.spec: Bump version.
* isys/isys.py (getDasdState): Unformatted dasd seem to show up as
"basic" now instead of "ready" (#130123)
* loader2/driverdisk.c: Fix hang with driver disks (#131112, #122952)
* iw/examine_gui.py: Remove spurious option in upgrade combo (#134058)
* iw/language_support_gui.py: Avoid changing default language when
selecting additional languages (#134040)
2004-09-29 Paul Nasrat <pnasrat@redhat.com>
* findpackageset.py: Better arch handling for biarch system upgrades
(#133045)
2004-09-28 Jeremy Katz <katzj@redhat.com>
* loader2/hdinstall.c (setKickstartHD):
* loader2/urlinstall.c (setKickstartUrl):
Make sure variables are initialized (#133996).
* isys/isys.py (readSwapLabel): Add function to read label from
swap filesystems.
(readFSLabel): Read swap and JFS labels too.
* fsset.py: Add support for label'ing swap filesystems (#127892).
* anaconda: Lack of a mouse if using remote display shouldn't ask
about the mouse type (#133902)
2004-09-27 Jeremy Katz <katzj@redhat.com>
* anaconda.spec: Bump version
* iw/zfcp_gui.py (ZFCPWindow.getNext): Update FCP config after
adding SCSI LUNs (#133290)
* autopart.py (doAutoPartition): Fix LVM traceback if going back
from not enough space (#131325)
* isys/isys.py (getGeometry): Remove unused function.
* isys/isys.c (doGetGeometry): Likewise.
* anaconda.spec: Bump version.
* loader2/driverdisk.c:
Don't try to mount as ext3 (we don't have the module).
If we haven't mounted a partition, don't fail the driver
disk load (#133036)
* loader2/hardware.c: we need to always do our busprobe (fixes
nonet, etc)
* loader2/loader.c: noprobe ==> nousb and nofirewire
* kickstart.py: Allow name.arch syntax for selecting a package in
%packages (#124456)
* iw/partition_dialog_gui.py (PartitionEditor.run):
* iw/raid_dialog_gui.py (RaidEditor.run):
Update SpinButtons before getting their value (#133456)
* iw/language_support_gui.py
(LanguageSupportWindow.rebuild_combo): Fix traceback when
unselecting last language (#133164)
* fsset.py (swapFileSystem.mount): Skip version 0 swaps (#122101)
* partedUtils.py (sniffFilesystemType): Don't accept version 0
swaps as swap
* kickstart.py (KickstartBase.definePartition): strip /dev from
--onpart (inspired by #121486)
* loader2/hdinstall.c: skip over /dev if given for path (#121486)
* lang-table: Use no instead of no-latin1 as
Norwegian keyboard (#133757)
* loader2/loader.c: Load dm-zero, dm-snapshot and dm-mirror (#132001)
* scripts/mk-images.i386:
* scripts/mk-images.ia64:
* scripts/mk-images.ppc:
* scripts/mk-images.s390:
* scripts/mk-images.x86_64:
Use a variable for raid and lvm modules. Add dm-zero, dm-snapshot
and dm-mirror (#132001)
2004-09-24 Jeremy Katz <katzj@redhat.com>
* anaconda.spec: Bump version
* iw/partition_gui.py (PartitionWindow.populate):
* textw/partition_text.py (PartitionWindow.populate):
Free space isn't active, so we can't just ignore it. Instead,
just ignore non-active partitions of < 1 MB (#133425)
* installclasses/rhel_as.py:
* installclasses/rhel_desktop.py:
* installclasses/rhel_es.py:
* installclasses/rhel_ws.py:
Add installclasses for Red Hat Enterprise Linux (hidden) for
translation purposes.
* loader2/Makefile (VERSION): Define VERSION.
* Makefile: Define VERSION and RELEASE here.
* Makefile.inc (VERSION):
* Makefile.inc (RELEASE):
Move to Makefile
* loader2/module-info: Add 3w-9xxx (#133525)
* scripts/upd-instroot: Switch back to default zh_CN font instead
of the bitmap one (#133330)
2004-09-23 Jeremy Katz <katzj@redhat.com>
* loader2/getparts.c (isPartitionName): i2o devices don't use a
"p" separator (#133379)
* iutil.py (makeDriveDeviceNodes): Create more RAID devices.
(makeDriveDeviceNodes): i2o devices don't use a "p" separator (#133379)
* loader2/cdinstall.c: Don't use PROBE_LOADED for cd probing (#131033)
* loader2/hardware.c: We can always probe devices with current
supported hardware. (#132592)
2004-09-23 Bill Nottingham <notting@redhat.com>
* loader2/module-info, scripts/mk-images.*: fix megaraid module name
2004-09-22 Jeremy Katz <katzj@redhat.com>
* anaconda.spec: Bump version.
* fsset.py (DevptsFileSystem.isMountable): Don't mount /dev/pts
during install (#133301)
* scripts/splittree.py: Fix for SRPMs (#122737)
* bootdisk/i386/syslinux.cfg:
* bootdisk/x86_64/syslinux.cfg:
Add localboot option (#120687).
* scripts/mk-images.ia64:
* scripts/mk-images.x86_64
Remove spurious fi
* textw/firewall_text.py: Oops, fix syntax error
2004-09-21 Jeremy Katz <katzj@redhat.com>
* anaconda.spec: Bump version
* lang-table (Arabic): Don't attempt Arabic text mode (#122228)
* scripts/upd-instroot (KEEPFILEGR): Add KacstQura font (#122228)
* scripts/mk-images.x86_64: Add a README in the images/pxeboot dir.
* scripts/mk-images.ia64: Create an images/pxeboot directory with
the kernel + initrd used in the boot.img.
* loader2/net.c (chooseNetworkInterface): Support using
ksdevice=macaddr instead of ksdevice=link or ksdevice=ethX.
Should sanitize the mac address to handle most sane formats (#130605).
* isys/getmacaddr.c (sanitizeMacAddr): Add function.
* isys/getmacaddr.h (sanitizeMacAddr): Add prototype.
* Makefile: Get 'make build' working with build system changes.
2004-09-21 Jeremy Katz <katzj@redhat.com>
* anaconda.spec:
* Makefile:
* Makefile.inc:
Rework build to not get date substituted in with
a snapbuild. Include changes explicitly in package changelog.
|