- Don't set the pmbr bootable flag on Macs, whether booted via EFI or not (mjg)

- Don't set GPT HFS+ partitions as bootable (mjg)
- Mark HFS+ as fsckable (mjg)
- fix setattr in set_cmdline_bool (pschindl)
- Add _mounttype to HFSPlus (mjg)
- Add support for UEFI Mac installs (mjg)
- Add support for HFS+ partitions (mjg)
This commit is contained in:
Brian C. Lane 2012-02-16 13:16:00 -08:00
parent 49ad1fd058
commit 4e0c893303
3 changed files with 16 additions and 2 deletions

1
.gitignore vendored
View File

@ -41,3 +41,4 @@ anaconda-15.2.tar.bz2
/anaconda-17.6.tar.bz2
/anaconda-17.7.tar.bz2
/anaconda-17.8.tar.bz2
/anaconda-17.9.tar.bz2

View File

@ -2,7 +2,7 @@
Summary: Graphical system installer
Name: anaconda
Version: 17.8
Version: 17.9
Release: 1%{?dist}
License: GPLv2+
Group: Applications/System
@ -135,6 +135,7 @@ Requires: zenity
%endif
Requires: createrepo >= %{createrepover}
Requires: squashfs-tools
Requires: hfsplus-tools
Requires: genisoimage >= %{genisoimagever}
Requires: GConf2 >= %{gconfversion}
%ifarch %{ix86} x86_64
@ -155,6 +156,9 @@ Requires: fcoe-utils >= %{fcoeutilsver}
%ifarch %{sparc}
Requires: elftoaout piggyback
%endif
%ifarch x86_64
Requires: mactel-boot
%endif
Obsoletes: anaconda-images <= 10
Provides: anaconda-images = %{version}-%{release}
Obsoletes: anaconda-runtime < %{version}-%{release}
@ -232,6 +236,15 @@ update-desktop-database &> /dev/null || :
%endif
%changelog
* Thu Feb 16 2012 Brian C. Lane <bcl@redhat.com> - 17.9-1
- Don't set the pmbr bootable flag on Macs, whether booted via EFI or not (mjg)
- Don't set GPT HFS+ partitions as bootable (mjg)
- Mark HFS+ as fsckable (mjg)
- fix setattr in set_cmdline_bool (pschindl)
- Add _mounttype to HFSPlus (mjg)
- Add support for UEFI Mac installs (mjg)
- Add support for HFS+ partitions (mjg)
* Mon Feb 13 2012 Brian C. Lane <bcl@redhat.com> - 17.8-1
- Clear partitions' metadata when 'clearpart --initlabel' used. (#783841)
(cherry picked from commit 15307cc091212cc69b599b90c239492c9c9586ec)

View File

@ -1 +1 @@
13a5e737a86c73a402f9b073d96e7f51 anaconda-17.8.tar.bz2
062fffde6ab8c29c72ccf7f603152d64 anaconda-17.9.tar.bz2