forked from weldr/lorax
-
Notifications
You must be signed in to change notification settings - Fork 2
/
lorax.spec
1410 lines (1220 loc) · 64 KB
/
lorax.spec
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
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# NOTE: This specfile is generated from upstream at https://github.com/rhinstaller/lorax
# NOTE: Please submit changes as a pull request
%define debug_package %{nil}
Name: lorax
Version: 28.1
Release: 1%{?dist}
Summary: Tool for creating the anaconda install images
Group: Applications/System
License: GPLv2+
URL: https://github.com/rhinstaller/lorax
# To generate Source0 do:
# git clone https://github.com/rhinstaller/lorax
# git checkout -b archive-branch lorax-%%{version}-%%{release}
# tito build --tgz
Source0: %{name}-%{version}.tar.gz
BuildRequires: python3-devel
Requires: lorax-templates
Requires: GConf2
Requires: cpio
Requires: device-mapper
Requires: dosfstools
Requires: e2fsprogs
Requires: findutils
Requires: gawk
Requires: genisoimage
Requires: glib2
Requires: glibc
Requires: glibc-common
Requires: gzip
Requires: isomd5sum
Requires: module-init-tools
Requires: parted
Requires: squashfs-tools >= 4.2
Requires: util-linux
Requires: xz
Requires: pigz
Requires: dracut >= 030
Requires: kpartx
# Python modules
Requires: libselinux-python3
Requires: python3-mako
Requires: python3-kickstart
Requires: python3-dnf >= 2.0.0
%if 0%{?fedora}
# Fedora specific deps
%ifarch x86_64
Requires: hfsplus-tools
%endif
%endif
%ifarch %{ix86} x86_64
Requires: syslinux >= 6.02-4
%endif
%ifarch ppc ppc64 ppc64le
Requires: kernel-bootwrapper
Requires: grub2
Requires: grub2-tools
%endif
%ifarch s390 s390x
Requires: openssh
%endif
%ifarch %{arm}
Requires: uboot-tools
%endif
# Moved image-minimizer tool to lorax
Provides: appliance-tools-minimizer
Obsoletes: appliance-tools-minimizer < 007.7-3
%description
Lorax is a tool for creating the anaconda install images.
It also includes livemedia-creator which is used to create bootable livemedia,
including live isos and disk images. It can use libvirtd for the install, or
Anaconda's image install feature.
%package lmc-virt
Summary: livemedia-creator libvirt dependencies
Requires: lorax = %{version}-%{release}
Requires: qemu
# Fedora edk2 builds currently only support these arches
%ifarch %{ix86} x86_64 %{arm} aarch64
Requires: edk2-ovmf
%endif
Recommends: qemu-kvm
%description lmc-virt
Additional dependencies required by livemedia-creator when using it with qemu.
%package lmc-novirt
Summary: livemedia-creator no-virt dependencies
Requires: lorax = %{version}-%{release}
Requires: anaconda-core
Requires: anaconda-tui
%description lmc-novirt
Additional dependencies required by livemedia-creator when using it with --no-virt
to run Anaconda.
%package templates-generic
Summary: Generic build templates for lorax and livemedia-creator
Requires: lorax = %{version}-%{release}
Provides: lorax-templates
%description templates-generic
Lorax templates for creating the boot.iso and live isos are placed in
/usr/share/lorax/templates.d/99-generic
%prep
%setup -q -n %{name}-%{version}
%build
%install
rm -rf $RPM_BUILD_ROOT
make DESTDIR=$RPM_BUILD_ROOT mandir=%{_mandir} install
%files
%defattr(-,root,root,-)
%license COPYING
%doc AUTHORS docs/livemedia-creator.rst docs/product-images.rst
%doc docs/*ks
%{python3_sitelib}/pylorax
%{python3_sitelib}/*.egg-info
%{_sbindir}/lorax
%{_sbindir}/mkefiboot
%{_sbindir}/livemedia-creator
%{_bindir}/image-minimizer
%{_bindir}/mk-s390-cdboot
%dir %{_sysconfdir}/lorax
%config(noreplace) %{_sysconfdir}/lorax/lorax.conf
%dir %{_datadir}/lorax
%{_mandir}/man1/*.1*
%files lmc-virt
%files lmc-novirt
%files templates-generic
%{_datadir}/lorax/templates.d/*
%changelog
* Thu Oct 19 2017 Brian C. Lane <[email protected]> 28.1-1
- Use bytes when writing strings in mk-s390-cdboot (#1504026) ([email protected])
* Tue Oct 17 2017 Brian C. Lane <[email protected]> 28.0-1
- Add make test target and update .gitignore ([email protected])
- Add first unit test so we can start collecting coverage ([email protected])
- Convert mk-s390-cdboot to python3 (#1497141) ([email protected])
- Update false positives ([email protected])
- Rename parameters to match names that dnf uses ([email protected])
- Don't override 'line' from outer scope ([email protected])
- Add swaplabel command ([email protected])
* Wed Sep 27 2017 Brian C. Lane <[email protected]> 27.11-1
- s390 doesn't need to graft product.img and updates.img into /images (#1496461) ([email protected])
- distribute the mk-s390-cdboot utility ([email protected])
- update graft variable in s390 template ([email protected])
* Mon Sep 18 2017 Brian C. Lane <[email protected]> 27.10-1
- Restore all of the grub2-tools on x86_64 and i386 (#1492197) ([email protected])
* Fri Aug 25 2017 Brian C. Lane <[email protected]> 27.9-1
- x86.tmpl: initially define compressargs as empty string ([email protected])
- x86.tmpl: ensure efiarch64 is defined ([email protected])
* Thu Aug 24 2017 Brian C. Lane <[email protected]> 27.8-1
- Fix grub2-efi-ia32-cdboot and shim-ia32 bits. ([email protected])
* Thu Aug 24 2017 Brian C. Lane <[email protected]> 27.7-1
- Make 64-bit kernel on 32-bit firmware work for x86 efi machines ([email protected])
- Don't install rdma bits on 32-bit ARM (#1483278) ([email protected])
* Mon Aug 14 2017 Brian C. Lane <[email protected]> 27.6-1
- Add creation of a bootable s390 iso (#1478448) ([email protected])
- Add mk-s360-cdboot utility (#1478448) ([email protected])
- Fix systemctl command (#1478247) ([email protected])
- Add version output (#1335456) ([email protected])
- Include the dracut fips module in the initrd (#1341280) ([email protected])
- Make sure loop device is setup (#1462150) ([email protected])
* Wed Aug 02 2017 Brian C. Lane <[email protected]> 27.5-1
- runtime-cleanup: preserve a couple more gstreamer libs ([email protected])
- perl is needed on all arches now ([email protected])
* Mon Jul 10 2017 Brian C. Lane <[email protected]> 27.4-1
- runtime-cleanup.tmpl: don't delete localedef ([email protected])
* Tue Jun 20 2017 Brian C. Lane <[email protected]> 27.3-1
- Don't remove libmenu.so library during cleanup on PowerPC ([email protected])
* Thu Jun 01 2017 Brian C. Lane <[email protected]> 27.2-1
- Remove filegraft from arm.tmpl (#1457906) ([email protected])
- Use anaconda-core to detect buildarch ([email protected])
* Wed May 31 2017 Brian C. Lane <[email protected]> 27.1-1
- arm.tmpl import basename (#1457055) ([email protected])
* Tue May 30 2017 Brian C. Lane <[email protected]> 27.0-1
- Bump version to 27.0 ([email protected])
- Try all packages when installpkg --optional is used. ([email protected])
- Add support for aarch64 live images ([email protected])
- pylint: Ignore different argument lengths for dnf callback. ([email protected])
- Adds additional callbacks keyword for start() ([email protected])
- Add ppc64-diag for Power64 platforms ([email protected])
- livemedia-creator: Add release license files to / of the iso ([email protected])
- lorax: Add release license files to / of the iso ([email protected])
- INSTALL_ROOT and LIVE_ROOT are not available during %%post ([email protected])
- Add --noverifyssl to lorax (#1430483) ([email protected])
* Mon Mar 06 2017 Brian C. Lane <[email protected]> 26.7-1
- add ostree to get installed in anaconda environment ([email protected])
- Add dependency for lvmdump -l command (#1255659) ([email protected])
* Tue Feb 21 2017 Brian C. Lane <[email protected]> 26.6-1
- Create /dev/random and /dev/urandom before running rpm -qa (#1420523) ([email protected])
- Fix duplicate kernel messages in /tmp/syslog (#1382611) ([email protected])
* Mon Feb 06 2017 Brian C. Lane <[email protected]> 26.5-1
- Print the full NEVRA when installing packages. ([email protected])
* Fri Jan 13 2017 Brian C. Lane <[email protected]> 26.4-1
- Only cleanup libhistory from readline ([email protected])
- Do not install rsh to anaconda chroot ([email protected])
- Fixed NameError on result_dir when calling with --image-only ([email protected])
* Tue Dec 06 2016 Brian C. Lane <[email protected]> 26.3-1
- New lorax documentation - 26.2 ([email protected])
- runtime-postinstall: PYTHONDIR is no longer used. ([email protected])
- Only require edk2-ovmf on supported arches. ([email protected])
* Tue Nov 22 2016 Brian C. Lane <[email protected]> 26.2-1
- add exception for lulzbot-marlin-firmware ([email protected])
- drop kexec arch conditional for aarch64 ([email protected])
- imgutils: Don't relabel /ostree ([email protected])
- Added option to remove packages (parallel to installpkgs) ([email protected])
- templates: When a subprocess fatally errors, output its stderr directly ([email protected])
* Mon Oct 17 2016 Brian C. Lane <[email protected]> 26.1-1
- Add missing fonts (#1370118) ([email protected])
- drop ssh server key generation for s390(x) (#1383641) ([email protected])
* Fri Sep 30 2016 Brian C. Lane <[email protected]> 26.0-1
- Bump version to 26.0 ([email protected])
- adapt to DNF 2.0 API changes ([email protected])
* Mon Sep 26 2016 Brian C. Lane <[email protected]> 25.16-1
- Fix broken sshd.inst boot option (#1378378) ([email protected])
- Don't log dracut initrd regeneration messages into /tmp/syslog (#1369439) ([email protected])
- Use imjournal for rsyslogd instead of sharing /dev/log with journal (#1369439) ([email protected])
- livemedia-creator: Check for packaging failures in the logs (#1374809) ([email protected])
- templates: Enusre basic.target.wants dir exists for rngd ([email protected])
* Thu Sep 08 2016 Brian C. Lane <[email protected]> 25.15-1
- Keep fsfreeze in install environment (#1315468) ([email protected])
- Add ppc64le kernel path ([email protected])
- Install storaged-iscsi to the runtime (#1347415) ([email protected])
* Tue Aug 23 2016 Brian C. Lane <[email protected]> 25.14-1
- lorax: Add --rootfs-size (#1368743) ([email protected])
- Revert "Use size=10 by default" ([email protected])
* Fri Aug 12 2016 Brian C. Lane <[email protected]> 25.13-1
- as of Fedora 25 s390x now has docker ([email protected])
- ppc64le doesn't have pcmciatools ([email protected])
- add grub2-tools to aarch64, drop duplicate grubby ([email protected])
- Allow supplying a disk image for PXE live systems ([email protected])
- Use size=10 by default ([email protected])
* Thu Jul 28 2016 Brian C. Lane <[email protected]> 25.12-1
- New lorax documentation - 25.12 ([email protected])
- Don't install python3-dnf-langpacks ([email protected])
* Wed Jul 20 2016 Brian C. Lane <[email protected]> 25.11-1
- Fix aarch64 installs due to missing/unsupported packages
- Keep fb_sys_fops module needed for ast support (#1272658) ([email protected])
* Wed Jul 13 2016 Brian C. Lane <[email protected]> 25.10-1
- Installing *-firmware should be optional ([email protected])
* Fri Jul 08 2016 Brian C. Lane <[email protected]> 25.9-1
- Fix installpkg error handling ([email protected])
- Switch installpkg default to --required ([email protected])
- Keep all of the kernel drivers/target/ modules (#1348381) ([email protected])
- Keep the pci utilities for use in kickstarts (#1344926) ([email protected])
- Make sure cmdline config file exists (#1348304) ([email protected])
- Stop using undocumented DNF logging API ([email protected])
* Thu Jun 02 2016 Brian C. Lane <[email protected]> 25.8-1
- livemedia-creator: Always copy novirt logs before cleanup ([email protected])
* Fri May 27 2016 Brian C. Lane <[email protected]> 25.7-1
- do not remove libutempter as tmux gained a dep on it ([email protected])
- New lorax documentation - 25.6 ([email protected])
- Update lmc UEFI support to use the edk2-ovmf package ([email protected])
* Fri May 13 2016 Brian C. Lane <[email protected]> 25.6-1
- Add efi, product, and updates image paths to treeinfo ([email protected])
- livemedia-creator: Update make-pxe-live to support missing initramfs
- Rebuild initramfs if it is missing ([email protected])
- Add a new error to the log monitor. ([email protected])
- Fix DataHolder to handle hasattr ([email protected])
* Fri Apr 29 2016 Brian C. Lane <[email protected]> 25.5-1
- Add example kickstart for Atomic PXE live no-virt ([email protected])
- Update ostree boot handling ([email protected])
- pylorax: Add delete option to umount ([email protected])
- Refactor PXE live creation code ([email protected])
- Change --make-pxe-live --no-virt use a fsimage ([email protected])
- Allow ostreesetup kickstart ([email protected])
* Mon Apr 18 2016 Brian C. Lane <[email protected]> 25.4-1
- livemedia-creator: Make sure make-iso kickstart includes dracut-live
- livemedia-creator: Simplify cleanup for no-virt ([email protected])
- Copying same file shouldn't crash (#1269213) ([email protected])
* Wed Mar 30 2016 Brian C. Lane <[email protected]> 25.3-1
- livemedia-creator: Use correct suffix on default image names (#1318958)
- livemedia-creator: Pass -Xbcj to mksquashfs ([email protected])
- templates: On 32 bit systems limit the amount of memory xz uses
- ltmpl: Add compressor selection and argument passing to installimg
- livemedia-creator: Update example kickstarts ([email protected])
- image-minimizer: Fix argument parsing ([email protected])
- livemedia-creator: Check selinux state and exit ([email protected])
- livemedia-creator: Catch dnf download error ([email protected])
- templates: Fix runtime_img check ([email protected])
- Remove gnome-icon-theme ([email protected])
- Exclude unused firmware from package selection. ([email protected])
- Add a means of excluding packages from a glob ([email protected])
- Clean up /dev. ([email protected])
- Remove /var/lib/dnf ([email protected])
- Remove a bunch of stuff pulled in by webkitgtk ([email protected])
- lorax-lmc-virt now uses qemu not libvirt and virt-install ([email protected])
- New lorax documentation - 25.2 ([email protected])
- Use Sphinx to generate manpages ([email protected])
- livemedia-creator: Use sphinx-argparse to document args ([email protected])
- Move argument parsers into pylorax.cmdline ([email protected])
- livemedia-creator: Fix off by 1024 error ([email protected])
- Create UDF iso when stage2 is >= 4GiB (#1312158) ([email protected])
* Tue Mar 15 2016 Brian C. Lane <[email protected]> 25.2-1
- Not all arches currently have docker (#1317632) ([email protected])
* Wed Mar 09 2016 Brian C. Lane <[email protected]> 25.1-1
- Change location of basearch to dnf.rpm.basearch (#1312087) ([email protected])
- livemedia-creator: Change fsck.ext4 discard failures to errors
- pylorax: proc.returncode can be None ([email protected])
- livemedia-creator: Create runtime using kickstart partition size
- livemedia-creator: Update kickstarts for rawhide ([email protected])
- pylorax: Fix undefind strings on subprocess crash ([email protected])
- Keep /usr/bin/xrdb (#1241724) ([email protected])
- Install the libblockdev-lvm-dbus plugin (#1264816) ([email protected])
- livemedia-creator: Bump default releasever to 25 ([email protected])
- Add docker-anaconda-addon ([email protected])
- livemedia-creator: Use qemu instead of virt-install ([email protected])
- Bump version to 25.0 ([email protected])
* Tue Mar 01 2016 Brian C. Lane <[email protected]> 24.14-1
- Add glibc-all-langpacks (#1312607) ([email protected])
* Thu Feb 25 2016 Brian C. Lane <[email protected]> 24.13-1
- templates: Reinstate gpgme-pthread.so for ostree ([email protected])
- Include grub2-efi-modules on the boot.iso (#1277227) ([email protected])
- Keep modules needed for ast video driver support (#1272658) ([email protected])
* Fri Feb 19 2016 Brian C. Lane <[email protected]> 24.12-1
- Put the NM loglevel config in the right place. ([email protected])
* Fri Feb 19 2016 Brian C. Lane <[email protected]> 24.11-1
- configure NetworkManager to loglevel=DEBUG (#1274647) ([email protected])
- New lorax documentation - 24.10 ([email protected])
* Fri Feb 12 2016 Brian C. Lane <[email protected]> 24.10-1
- Add rng-tools and start rngd.service by default (#1258516) ([email protected])
- livemedia-creator: Stop passing --repo to anaconda (#1304802)
- livemedia-creator: Add /usr/share/lorax/templates.d/ support ([email protected])
- Move templates to /usr/share/lorax/templates.d/99-generic ([email protected])
- Add check for templates.d in the sharedir ([email protected])
- Add documentation for the lorax command and templates ([email protected])
- Remove the removal of the eintr checker, which has been removed
* Wed Jan 13 2016 Brian C. Lane <[email protected]> 24.9-1
- livemedia-creator: Add kernel-modules and kernel-modules-extra to examples
- livemedia-creator: Make sure the rootfs.img can be compressed
* Tue Jan 12 2016 Brian C. Lane <[email protected]> 24.8-1
- Make arm .treeinfo match reality ([email protected])
- Add --iso-name to use with --iso-only ([email protected])
* Fri Jan 08 2016 Brian C. Lane <[email protected]> 24.7-1
- Add kpartx to Requires ([email protected])
- Prefix temporary files and directories with lmc- ([email protected])
- Add --iso-only option to --make-iso ([email protected])
- livemedia-creator: Fix calculation of disk_size in some cases
- docs: Update documentation for livemedia-creator ([email protected])
- livemedia-creator: Add --image-type and --qemu-args options ([email protected])
- pylorax: Add mkqemu_img function, alias mkqcow2 to it. ([email protected])
- Update things to make pylint 1.5.1 happy ([email protected])
- Write a list of debuginfo packages to /root/debug-pkgs.log (#1068675)
- Also remove uboot from live arm.tmpl ([email protected])
- no longer make u-boot wrapped kernels ([email protected])
- Fix chronyd not working in the installation (#1288905) ([email protected])
- Update Lorax documentation - 24.6 ([email protected])
- Update docs for product.img ([email protected])
* Wed Dec 02 2015 Brian C. Lane <[email protected]> 24.6-1
- livemedia-creator: Raise an error if url is used without networking
- livemedia-creator: Fix a small typo ([email protected])
- livemedia-creator: Use discard during installation
- livemedia-creator: Use cache=unsafe for the installation disk
- Remove requires for pocketlint as it is not used in build process
- Include qemu modules in the initrd ([email protected])
- livemedia-creator: Check kickstart for shutdown (#1207959) ([email protected])
- livemedia-creator: Correctly handle not mounting image ([email protected])
- livemedia-creator: Use hd:LABEL for stage2 iso ([email protected])
- Add support for .repo files (#1264058) ([email protected])
- livemedia-creator: Actually pass vcpus to virt-install ([email protected])
- paste is needed by os-prober (#1275105) ([email protected])
* Fri Nov 06 2015 Brian C. Lane <[email protected]> 24.5-1
- Add --virt-uefi to boot the VM using OVMF ([email protected])
- Enable gtk inspector. ([email protected])
- lorax: Improve argument parsing and help ([email protected])
- lorax: Add --sharedir to override configuration path ([email protected])
* Wed Oct 28 2015 Brian C. Lane <[email protected]> 24.4-1
- livemedia-creator: Allow novirt ostree partitioned images (#1273199)
- Add documentation and kickstart for --make-vagrant ([email protected])
- livemedia-creator: Make --make-vagrant work with --no-virt ([email protected])
- livemedia-creator: Add --make-vagrant command ([email protected])
- Add selinux switch to mktar ([email protected])
- livemedia-creator: Make --make-oci work with --no-virt ([email protected])
- Add documentation for --make-oci ([email protected])
- livemedia-creator: Add --make-oci for Open Container Initiative images
- Add submount directory to PartitionMount class ([email protected])
- Keep libthread so that gdb will work correctly (#1269055) ([email protected])
- Update Lorax documentation - 24.3 ([email protected])
* Tue Oct 06 2015 Brian C. Lane <[email protected]> 24.3-1
- Do not let systemd-tmpfiles set up /etc on boot ([email protected])
- Fix the concatenation of error output. ([email protected])
- Add findmnt command ([email protected])
- Reduce the size of macboot.img (#952747) ([email protected])
- rsa1 keys are not supported any more by our openssh ([email protected])
- Look for crashes from the anaconda signal handler. ([email protected])
- Include gdb in the boot.iso ([email protected])
- Do not install weak deps in boot.iso ([email protected])
- Require correct dnf version for API changes ([email protected])
- Drop multiprocessing for do_transaction (#1208296) ([email protected])
- Add a font that supports Urdu characters (#1004717) ([email protected])
- livemedia-creator: Remove random-seed from images (#1258986) ([email protected])
- Don't include early microcode in initramfs (#1258498) ([email protected])
* Mon Aug 31 2015 Brian C. Lane <[email protected]> 24.2-1
- drop fedup-dracut and friends ([email protected])
- don't build upgrade.img anymore ([email protected])
- livemedia-creator: no-virt fsimage should only use / size from ks
- Update lmc docs for new mock ([email protected])
- No longer offer a rescue boot menu option on liveinst (#1256061).
- document --timeout in livemedia-creator man page ([email protected])
- Add enough of shadow-utils to create new user accounts. ([email protected])
- Update Lorax documentation - 24.1 ([email protected])
- Add lldptool (#1085325) ([email protected])
* Fri Aug 07 2015 Brian C. Lane <[email protected]> 24.1-1
- some of the PowerPC utilities (powerpc-utils and fbset) need perl too
- Add a default vconsole.conf to the boot.iso (#1250260) ([email protected])
- Return the output from failed commands in CalledProcessError ([email protected])
- Add dracut-live for livemedia kickstart example ([email protected])
* Thu Jul 30 2015 Brian C. Lane <[email protected]> 24.0-1
- Bump version to 24.0 ([email protected])
- Use execReadlines in livemedia-creator ([email protected])
- Add execReadlines to executils. ([email protected])
- Add reset_lang argument to everything in executils. ([email protected])
* Tue Jul 21 2015 Brian C. Lane <[email protected]> 23.14-1
- Add a new makefile target that does everything needed for jenkins.
- Revert "Revert "Turn off ldconfig"" ([email protected])
- Add back libraries needed by spice-vdagent ([email protected])
- Remove some junk that didn't work anyway ([email protected])
- Add a verification step to Lorax.run. ([email protected])
- Create an empty selinux config file (#1243168) ([email protected])
- Update Lorax documentation - 23.13 ([email protected])
* Fri Jul 10 2015 Brian C. Lane <[email protected]> 23.13-1
- Add a bit more overhead to the root filesystem size ([email protected])
- network: turn slaves autoconnection on ([email protected])
- Keep hyperv_fb driver in the image (#834791) ([email protected])
* Fri Jun 26 2015 Brian C. Lane <[email protected]> 23.12-1
- Explicitly add kernel-modules and kernel-modules-extra ([email protected])
* Fri Jun 19 2015 Brian C. Lane <[email protected]> 23.11-1
- Disable systemd-tmpfiles-clean (#1202545) ([email protected])
* Wed Jun 10 2015 Brian C. Lane <[email protected]> 23.10-1
- Remove some stale entires from runtime-install ([email protected])
- Stop moving sitecustomize into site-packages ([email protected])
- Pass setup_logging the log file, not the whole opts structure.
- Move IsoMountpoint into its own module. ([email protected])
- Move setup_logging into pylorax/__init__.py. ([email protected])
- Break all the log monitoring stuff from LMC out into its own module.
- Fix bug with product DataHolder overwriting product string. ([email protected])
* Fri May 15 2015 Brian C. Lane <[email protected]> 23.9-1
- Update execWith* docstrings ([email protected])
- livemedia-creator: Update example kickstarts ([email protected])
- Update fedora-livemedia.ks example ([email protected])
- Include html documentation under docs/html ([email protected])
- Switch documentation to python3 ([email protected])
- Create html documentation under docs/html/ ([email protected])
- livemedia-creator: Catch missing package errors ([email protected])
- Update spec for python3 and add subpackages for lmc ([email protected])
- Convert to using pocketlint for pylint rules ([email protected])
- Convert livemedia-creator to py3 ([email protected])
- Convert test-parse-template to py3 ([email protected])
- Update image-minimizer for py3 ([email protected])
- Change mkefiboot to py3 ([email protected])
- Additional python3 changes ([email protected])
- Update lorax for python3 and argparse ([email protected])
- Use the execWith* methods from Anaconda ([email protected])
- Convert pylorax to python3 ([email protected])
- Clean up some pylint warnings ([email protected])
- Make sure openssh-clients is installed (#1219398) ([email protected])
- Add product.img support for s390 templates ([email protected])
- Add some more details about template rendering errors ([email protected])
- Mock more modules for RTD ([email protected])
- Mock the selinux package for RTD ([email protected])
- Added Sphinx Documentation ([email protected])
* Thu Apr 02 2015 Brian C. Lane <[email protected]> 23.8-1
- Include cryptsetup in the image (#1208214) ([email protected])
* Fri Mar 27 2015 Brian C. Lane <[email protected]> 23.7-1
- Check that the transaction process is still alive ([email protected])
- livemedia-creator: Clean up resultdir handling ([email protected])
* Fri Mar 20 2015 Brian C. Lane <[email protected]> 23.6-1
- Include ld.so.conf (#1204031) ([email protected])
- Revert "Turn off ldconfig" ([email protected])
- Add ability for external templates to graft content into boot.iso
- Keep logitech hid drivers (#1199770) ([email protected])
* Mon Mar 16 2015 Brian C. Lane <[email protected]> 23.5-1
- Don't erase /usr/lib/os.release.d ([email protected])
* Fri Mar 13 2015 Brian C. Lane <[email protected]> 23.4-1
- Require python-dnf so that we get the python2 version ([email protected])
- livemedia-creator: Fix up fake yum object for DNF change ([email protected])
- Update logic for stage2 detection on boot.iso ([email protected])
* Fri Mar 06 2015 Brian C. Lane <[email protected]> 23.3-1
- Turn off ldconfig ([email protected])
- Add removekmod template command ([email protected])
- Move stage2 to images/install.img (#815275) ([email protected])
* Fri Feb 27 2015 Brian C. Lane <[email protected]> 23.2-1
- Update pykickstart requirement ([email protected])
- Explicitly install notification-daemon ([email protected])
* Tue Feb 17 2015 Brian C. Lane <[email protected]> 23.1-1
- Skip using srpm repos ([email protected])
- Drop the dnf Base object deletion code and use reset ([email protected])
- Get the log directory from the configfile ([email protected])
- lorax: Add --cachedir, --force and --workdir cmdline options ([email protected])
- Cleanup help alignment ([email protected])
- dnf: remove files from installed packages ([email protected])
- Switch lorax to use dnf instead of yum ([email protected])
- Fix Source0 for use with github ([email protected])
* Thu Feb 12 2015 Brian C. Lane <[email protected]> 23.0-1
- Bump version to 23.0 ([email protected])
- os-release moved to /usr/lib (#1191713) ([email protected])
- Use /usr/bin/python2 in scripts ([email protected])
- Add bridge-utils (#1188812) ([email protected])
* Fri Feb 06 2015 Brian C. Lane <[email protected]> 22.4-1
- livemedia-creator: Add --timeout option to cancel install after X minutes
- network: add support for bridge (#1075195) ([email protected])
- Move url and source to github in specfile ([email protected])
- Use %%license in lorax.spec ([email protected])
* Fri Jan 23 2015 Brian C. Lane <[email protected]> 22.3-1
- livemedia-creator: Add documentation on using mock and livemedia-creator ([email protected])
- livemedia-creator: Bump default releasever to 22 ([email protected])
- Change console font to eurlatgr ([email protected])
* Fri Jan 16 2015 Brian C. Lane <[email protected]> 22.2-1
- Add --live-rootfs-keep-size option ([email protected])
- Add --live-rootfs-size option. ([email protected])
- livemedia-creator: Update example kickstarts ([email protected])
- livemedia-creator: Turn on debug output for dracut ([email protected])
- livemedia-creator: Copy all the logs from /tmp/ ([email protected])
- livemedia-creator: Create parent dirs for logfile path ([email protected])
- Remove fedora-icon-theme ([email protected])
- Remove fedora-gnome-theme ([email protected])
- Remove the GSettings overrides for metacity ([email protected])
- Remove gnome-python2-gconf ([email protected])
- --make-pxe-target: change permissions of regenerated initramrfs to 0644
- Override services kickstart setting from interactive-defaults.ks
- Use gcdaa64.efi on aarch64 (#1174475) ([email protected])
- livemedia-creator: add a timeout to the log monitor startup ([email protected])
- Add --make-pxe-live and --make-ostree-live (for Atomic) targets.
- Revert "Install optional product and updates packages (#1155228)"
- Add log monitoring to lmc --no-virt installation ([email protected])
- runtime-cleanup.tmpl: keep virtio-rng (#1179000) ([email protected])
- Install python-nss ([email protected])
* Fri Dec 12 2014 Brian C. Lane <[email protected]> 22.1-1
- Actually make boot.iso on aarch64. ([email protected])
- Add --includepkg argument ([email protected])
* Fri Dec 05 2014 Brian C. Lane <[email protected]> 22.0-1
- aarch64 no longer needs explicit console setting (#1170412) ([email protected])
- Bump version to 22.0 ([email protected])
* Wed Dec 03 2014 Brian C. Lane <[email protected]> 21.31-1
- Drop 32 bit for loop from ppc64 grub2 config (#1169878) ([email protected])
- gschemas: Fix typo button_laytout -> button_layout ([email protected])
* Thu Nov 20 2014 Brian C. Lane <[email protected]> 21.30-1
- Install optional product and updates packages (#1155228) ([email protected])
* Wed Nov 19 2014 Brian C. Lane <[email protected]> 21.29-1
- Remove diagnostic product.img test (#1165425) ([email protected])
* Thu Nov 06 2014 Brian C. Lane <[email protected]> 21.28-1
- Add product.img support for arm templates ([email protected])
- Revert "add fedora-repos-anaconda to runtime environment" ([email protected])
* Wed Nov 05 2014 Brian C. Lane <[email protected]> 21.27-1
- Remove the ppc magic file ([email protected])
- Update templates to use installimg for product and updates ([email protected])
- Add installimg command for use in the templates ([email protected])
- Setup mdadm to turn off homehost (#1156614) ([email protected])
- Don't include the stock lvm.conf. (#1157864) ([email protected])
- Write list of packages to /root/lorax-packages.log ([email protected])
* Mon Oct 20 2014 Brian C. Lane <[email protected]> 21.26-1
- Use all upper case for shim in live/efi.tmpl ([email protected])
- livemedia-creator: Add nfs support for no-virt mode (#1121255)
- Include /usr/bin/bugzilla in the installation environment.
* Tue Oct 07 2014 Brian C. Lane <[email protected]> 21.25-1
- Libgailutil is required yelp, don't remove it (#1072033) ([email protected])
- Revert "Don't remove /usr/share/doc/anaconda." (#1072033)
- Look for "BOOT${efiarch}.EFI" in mkefiboot as well. ([email protected])
- Make sure shim is actually in the package list on aarch64 as well.
- Fix 'docs' typo in livemedia-creator manpage (#1149026) ([email protected])
- Keep the /etc/lvm/profiles directory in the image ([email protected])
- Use shim on aarch64. ([email protected])
* Tue Sep 30 2014 Brian C. Lane <[email protected]> 21.24-1
- Rework how including /usr/share/doc/anaconda works. ([email protected])
- Don't remove /usr/share/doc/anaconda. ([email protected])
- Stop removing libXt from the installation media. ([email protected])
* Tue Sep 23 2014 Brian C. Lane <[email protected]> 21.23-1
- livemedia-creator: Make sure ROOT_PATH exists (#1144140) ([email protected])
- livemedia-creator: Add --no-recursion to mktar (#1144140) ([email protected])
- Remove at-spi ([email protected])
* Mon Sep 15 2014 Brian C. Lane <[email protected]> 21.22-1
- add fedora-repos-anaconda to runtime environment ([email protected])
- Let the plymouth dracut module back into the ppc64 upgrade.img
- Add more tools for rescue mode (#1109785) ([email protected])
- Add ppc64le arch (#1136490) ([email protected])
- allow setting additional dracut parameters for DVD s390x installs
* Thu Aug 28 2014 Brian C. Lane <[email protected]> 21.21-1
- Revert "Require 32bit glibc on ppc64" ([email protected])
- livemedia-creator: Update ppc64 live to use grub2 ([email protected])
- livemedia-creator: Add ppc64 live creation support (#1102318)
- Include /sbin/ldconfig from glibc. ([email protected])
* Fri Aug 15 2014 Brian C. Lane <[email protected]> 21.20-1
- Require 32bit glibc on ppc64 ([email protected])
- Add ipmitool and drivers (#1126009) ([email protected])
- livemedia-creator: Padd disk size by 2MiB ([email protected])
- livemedia-creator: Run setfiles after no-virt installation ([email protected])
- https is a sane package source URL scheme ([email protected])
* Wed Jul 30 2014 Brian C. Lane <[email protected]> 21.19-1
- Add kexec anaconda addon (#1115914) ([email protected])
* Wed Jul 23 2014 Brian C. Lane <[email protected]> 21.18-1
- Revert "Add kexec anaconda addon (#1115914)" ([email protected])
- Disable dnf-makecache.timer (#1120368) ([email protected])
* Wed Jul 16 2014 Brian C. Lane <[email protected]> 21.17-1
- livemedia-creator: close the socket when done ([email protected])
- Keep seq and getconf utilities in the image ([email protected])
- Allow _ in isolabel (#1118955) ([email protected])
* Fri Jul 11 2014 Brian C. Lane <[email protected]> 21.16-1
- Don't remove usr/lib/rpm/platform/ (#1116450) ([email protected])
- Add xfsdump and remove extra files from xfsprogs (#1118654) ([email protected])
- Add kexec anaconda addon (#1115914) ([email protected])
- Fix typo in lohit-telugu-fonts ([email protected])
- Drop writing to resolv.conf in postinstall ([email protected])
- livemedia-creator: Allow the boot.iso to be shared ([email protected])
- livemedia-creator: log more failure information ([email protected])
- livemedia-creator: drop console=ttyS0 ([email protected])
- livemedia-creator: Log the line that caused the failure ([email protected])
- livemedia-creator: add more errors ([email protected])
- Allow doing non-URL installs if using virt. ([email protected])
* Wed Jul 02 2014 Brian C. Lane <[email protected]> 21.15-1
- Convert metacity gconf settings into gsettings schema overrides
- Add more keybindings to the gschema override ([email protected])
- Don't emit media labels with spaces in them. ([email protected])
- Remove biosdevname (#989209) ([email protected])
* Fri Jun 27 2014 Brian C. Lane <[email protected]> 21.14-1
- The theme has been absorbed into gtk3 ([email protected])
* Thu Jun 26 2014 Brian C. Lane <[email protected]> 21.13-1
- livemedia-creator: Ignore IGNORED errors in anaconda logs ([email protected])
* Tue Jun 24 2014 Brian C. Lane <[email protected]> 21.12-1
- tito.props section name is buildconfig ([email protected])
- Stop removing libcanberra-gtk3 libraries (#1111724) ([email protected])
- Update tito config ([email protected])
* Thu Jun 19 2014 Brian C. Lane <[email protected]> 21.11-1
- livemedia-creator: Handle virt-install failure cleanup ([email protected])
- livemedia-creator: Fail when there are missing packages ([email protected])
- Keep virtio_console harder. ([email protected])
* Mon May 12 2014 Brian C. Lane <[email protected]> 21.10-1
- Add --add-template{,-var} ([email protected])
- runtime-install: Add rpm-ostree, move dnf here ([email protected])
- Update copyright statements ([email protected])
- livemedia-creator: Cleanup docstrings ([email protected])
- livemedia-creator: Cleanup some style issues ([email protected])
- Cleanup other misc pylint warnings ([email protected])
- Cleanup pylorax pylint warnings ([email protected])
- Add pylint testing ([email protected])
- Require uboot-tools when running on arm ([email protected])
- Obsolete appliance-tools-minimizer (#1084110) ([email protected])
- livemedia-creator: Copy fsimage if hardlink fails ([email protected])
- Turn on debug output for mkefiboot ([email protected])
- Clean up download and install output ([email protected])
- Install specific lohit fonts instead of all of them (#1090390)
- Update grub2-efi.cfg for aarch64 to more closely match x86 (#1089418).
- Install rdma so that dracut will use it along with libmlx4 (#1089564)
* Tue Apr 15 2014 Brian C. Lane <[email protected]> 21.9-1
- Update syslinux 6.02 support for noarch change ([email protected])
- runtime-cleanup: Do install GPG ([email protected])
* Thu Apr 10 2014 Brian C. Lane <[email protected]> 21.8-1
- Update to support syslinux 6.02 ([email protected])
- livemedia-creator: Add support for making tarfiles ([email protected])
- livemedia-creator: Allow disk sizes to be < 1GiB ([email protected])
- livemedia-creator: Check fsimage kickstart for single partition
- livemedia-creator: Output all the errors at once ([email protected])
- livemedia-creator: Update documentation to reflect new options
- livemedia-creator: Make --make-fsimage work with virt-install
* Wed Apr 02 2014 Brian C. Lane <[email protected]> 21.7-1
- Use BOOTAA64.efi for AARCH64 bootloader filename (#1080113) ([email protected])
- Stop removing curl after adding it ([email protected])
- move image-minimizer to lorax (#1082642) ([email protected])
- support ppc64le in lorax ([email protected])
* Wed Mar 26 2014 Brian C. Lane <[email protected]> 21.6-1
- Install bzip2 for liveimg tar.bz2 support ([email protected])
- Remove obsolete firstaidkit packages (#1076237) ([email protected])
- livemedia-creator: Add option to create qcow2 disk images ([email protected])
- Add support for creating qcow2 images ([email protected])
- utf-8 encode yum actions before displaying them (#1072362) ([email protected])
* Fri Feb 28 2014 Brian C. Lane <[email protected]> 21.5-1
- Use string for releasever not int (#1067746) ([email protected])
- createrepo is needed by driver disks (#1016004) ([email protected])
- Improve aarch64 UEFI support (#1067671) ([email protected])
- livemedia-creator: Set the product and release version env variables
(#1067746) ([email protected])
- Check initrd size on ppc64 and warn (#1060691) ([email protected])
- Remove drivers and modules on ppc64 (#1060691) ([email protected])
* Mon Feb 10 2014 Brian C. Lane <[email protected]> 21.4-1
- livemedia-creator: virt-image needs ram in MiB not KiB (#1061773)
- Don't remove libraries from bind-libs-lite ([email protected])
- Include all the example kickstarts (#1019728) ([email protected])
- Remove floppy and scsi_debug from initrd (#1060691) ([email protected])
* Tue Feb 04 2014 Brian C. Lane <[email protected]> 21.3-1
- Install aajohan-comfortaa-fonts (#1047430) ([email protected])
- Include mesa-dri-drivers (#1053940) ([email protected])
* Fri Jan 24 2014 Brian C. Lane <[email protected]> 21.2-1
- Activate [email protected] on switch to empty VT (#980062)
- flush data to disk after mkfsimage (#1052175) ([email protected])
- livemedia-creator: Use findkernels instead of KernelInfo ([email protected])
- Print error when kickstart is missing (#1052872) ([email protected])
* Tue Dec 17 2013 Brian C. Lane <[email protected]> 21.1-1
- Add initial 64-bit ARM (aarch64) support (#1034432) ([email protected])
* Mon Dec 16 2013 Brian C. Lane <[email protected]> 21.0-1
- s390 switch to generic condev (#1042766) ([email protected])
- sort glob output before using it ([email protected])
- Bless grub2 for PPC (#1020112) ([email protected])
- livemedia-creator: Cleanup temp yum files (#1025837) ([email protected])
- lorax: pass size from Lorax.run to create_runtime (#903385) ([email protected])
* Mon Nov 18 2013 Brian C. Lane <[email protected]> 20.4-1
- drop 'xdriver=vesa' from basic graphics mode parameters (per ajax)
- Include partx (#1022899) ([email protected])
- Run compressions in multiple threads ([email protected])
- Do not remove libdaemon from the runtime environment (#1028938)
- Set UEFI defaults to match BIOS (#1021451,#1021446) ([email protected])
- livemedia-creator: Add minimal disk example kickstart (#1019728)
* Wed Oct 16 2013 Brian C. Lane <[email protected]> 20.3-1
- ARM: install the dtb files into the install tree. ([email protected])
- ARM: Don't install or deal with in templates, no longer existing kernels
- kernel changed seperator for flavours from . to + update regular expression
- Keep virtio_console module (#1019564) ([email protected])
- Add macboot option (#1012529) ([email protected])
* Wed Sep 25 2013 Brian C. Lane <[email protected]> 20.2-1
- drop dracut args from config files (#1008054) ([email protected])
- livemedia-creator: Update example kickstart ([email protected])
* Mon Sep 09 2013 Brian C. Lane <[email protected]> 20.1-1
- Yaboot to grub2 conversion cleanup. ([email protected])
- Firstboot is not an anaconda dependency ([email protected])
- Revert "Switch to cgit url for Source0" ([email protected])
- Switch to cgit url for Source0 ([email protected])
* Tue Sep 03 2013 Brian C. Lane <[email protected]> 20.0-1
- remove firewalld from installroot (#1002195) ([email protected])
- Make sure grubby is installed for initrd creation (#1001896) ([email protected])
- GRUB2 as the ISO boot loader for POWER arch ([email protected])
- Require hfsplus-tools on Fedora x86_64 ([email protected])
* Fri Aug 23 2013 Brian C. Lane <[email protected]> 19.8-1
- Make sure we have a theme settings file in place. ([email protected])
- Keep liblzo2.* (#997643) ([email protected])
- Make sure dracut uses no-hostonly mode ([email protected])
- Run spice-vdagentd without systemd-logind integration (#969405)
* Thu Aug 01 2013 Brian C. Lane <[email protected]> 19.7-1
- Add a dist target that copies the archive to fedorahosted ([email protected])
- dracut-nohostonly and dracut-norescue got renamed for dracut >= 030
- EFI and related packages are only for x86_64 ([email protected])
- Don't remove xkeyboard-config message files (#972236) ([email protected])
* Fri Jul 26 2013 Brian C. Lane <[email protected]> 19.6-1
- Add manpage for lorax ([email protected])
- Add manpage for livemedia-creator ([email protected])
- livemedia-creator: pass inst.cmdline for headless installs (#985487)
- Stop using /usr/bin/env (#987028) ([email protected])
- livemedia-creator: clarify required package errors (#985340) ([email protected])
- Include device-mapper-persistent-data in images for thinp support.
* Thu Jun 13 2013 Brian C. Lane <[email protected]> 19.5-1
- Let sshd decide which keys to create (#971856) ([email protected])
- Don't remove thbrk.tri (#886250) ([email protected])
- Switch from xorg-x11-fonts-ethiopic to sil-abyssinica-fonts (#875664)
- Make ignoring yum_lock messages in anaconda easier. ([email protected])
- Bump image size up to 2G (#967556) ([email protected])
- livemedia-creator: Fix logic for anaconda test (#958036) ([email protected])
* Tue May 21 2013 Brian C. Lane <[email protected]> 19.4-1
- Add command for opening anaconda log file to history ([email protected])
- Do not install chrony and rdate explicitly ([email protected])
* Mon Apr 29 2013 Brian C. Lane <[email protected]> 19.3-1
- Remove /var/log/journal so journald won't write to overlay
- Leave /etc/os-release in the initrd (#956241) ([email protected])
- no standalone modutils package ([email protected])
- remove no longer supported arm kernel variants add the new lpae one
- livemedia-creator: Update example kickstarts ([email protected])
- livemedia-creator: Ignore rescue kernels ([email protected])
* Mon Apr 15 2013 Brian C. Lane <[email protected]> 19.2-1
- Let devices get detected and started automatically. ([email protected])
- Fix import of version ([email protected])
- fix version query and add one to the log file ([email protected])
- Do not remove files required by tools from the s390utils-base package.
* Tue Mar 19 2013 Brian C. Lane <[email protected]> 19.1-1
- Print & log messages on scriptlet/transaction errors ([email protected])
- sysutils: add -x to cp in linktree ([email protected])
- treebuilder: fix "Can't stat exclude path "/selinux"..." message
- runtime: install dracut-{nohostonly,norescue} ([email protected])
- runtime-install: install shim-unsigned ([email protected])
- Add explicit install of net-tools (#921619) ([email protected])
- Don't remove hmac files for ssh and sshd (#882153) ([email protected])
- Raise an error when there are no initrds ([email protected])
- Add yum logging to yum.log ([email protected])
- remove sparc support ([email protected])
- Change Makefile to produce .tgz ([email protected])
* Thu Feb 28 2013 Brian C. Lane <[email protected]> 19.0-1
- New Version 19.0
- Remove some env variables (#907692) ([email protected])
- Make sure tmpfs is enabled (#908253) ([email protected])
* Tue Feb 12 2013 Brian C. Lane <[email protected]> 18.31-1
- add syslinux and ssm ([email protected])
- Add filesystem image install support ([email protected])
* Thu Jan 31 2013 Brian C. Lane <[email protected]> 18.30-1
- yum changed the callback info ([email protected])
- tigervnc-server-module depends on Xorg, which doesn't exist on s390x
- tools not existing on s390x ([email protected])
- specspo is dead for a long time ([email protected])
- no Xorg on s390x ([email protected])
- Make boot configs consistent. ([email protected])
- Dynamically generate the list of installed platforms for .treeinfo
- Add a U-Boot wrapped image of 'upgrade.img'. ([email protected])
- Add trigger for Anaconda's exception handling to bash_history
- livemedia-creator: update example kickstarts ([email protected])
- livemedia-creator: don't pass console=ttyS0 ([email protected])
- Fix gcdx64.efi path to work for other distros than Fedora. ([email protected])