diff options
author | Josh Boyer <jwboyer@fedoraproject.org> | 2015-02-23 15:43:04 -0500 |
---|---|---|
committer | Josh Boyer <jwboyer@fedoraproject.org> | 2015-02-23 15:43:04 -0500 |
commit | 2288d59f27f9630248600b7788d7a983f528e1ae (patch) | |
tree | 11039a5738aed5a0f706fdbf3989e157753b4700 | |
parent | a36e7653dfe9dfeb47ba54282edf2a2f1ff0c249 (diff) | |
download | kernel-2288d59f27f9630248600b7788d7a983f528e1ae.tar.gz kernel-2288d59f27f9630248600b7788d7a983f528e1ae.tar.xz kernel-2288d59f27f9630248600b7788d7a983f528e1ae.zip |
Missed a hack
We're using the -rcX tarballs, so we don't need to apply the patch-4.0-rcX
patch. It wasn't actually being applied, but the SRPM rebuild in koji fails
because we list it as Patch00 and it doesn't exist.
-rw-r--r-- | kernel.spec | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/kernel.spec b/kernel.spec index d9276a95d..42d375804 100644 --- a/kernel.spec +++ b/kernel.spec @@ -483,7 +483,8 @@ Patch00: %{stable_patch_00} # near the top of this spec file. %else %if 0%{?rcrev} -Patch00: patch-4.%{upstream_sublevel}-rc%{rcrev}.xz +### HAX we're using -rc$x tarballs to make transitioning easier +# Patch00 patch-4.%{upstream_sublevel}-rc%{rcrev}.xz %if 0%{?gitrev} Patch01: patch-4.%{upstream_sublevel}-rc%{rcrev}-git%{gitrev}.xz %endif @@ -2209,10 +2210,10 @@ fi # # %changelog -* Mon Feb 23 2015 Josh Boyer <jwboyer@fedoraproject.org> +* Mon Feb 23 2015 Josh Boyer <jwboyer@fedoraproject.org> - 4.0.0-0.rc1.git0.1 - Add patch for HID i2c from Seth Forshee (rhbz 1188439) -* Mon Feb 23 2015 Josh Boyer <jwboyer@fedoraproject.org> - 4.0.0-0.rc1.git0.1 +* Mon Feb 23 2015 Josh Boyer <jwboyer@fedoraproject.org> - Linux v4.0-rc1 - CVE-2015-0275 ext4: fallocate zero range page size > block size BUG (rhbz 1193907 1195178) - Disable debugging options. |