Go to file
Florian Weimer 4ae360fa74 Auto-sync with upstream branch release/2.26/master
Upstream commit: 174709d879a15590e00119c7f91dc2460aaf571c

- CVE-2018-11237: Buffer overflow in mempcpy for Xeon Phi (#1581275)
- nptl: Fix waiters-after-spinning case in pthread_cond_broadcast (#1622669)
- x86: Correct index_cpu_LZCNT (swbz#23456)
- x86: Populate COMMON_CPUID_INDEX_80000001 for Intel CPUs (swbz#23459)
- stdio-common/tst-printf.c: Remove part under a non-free license (swbz#23363)
- libio: Disable vtable validation in case of interposition (swbz#23313)
- if_nametoindex: Check length of ifname before copying (swbz#22442)
- getifaddrs: Don't return ifa entries with NULL names (swbz#21812)
- time: Use _STRUCT_TIMESPEC as guard in <bits/types/struct_timespec.h>
  (swbz#23349)
- math: Fix parameter type in C++ version of iseqsig (swbz#23171)
- libio: Avoid _allocate_buffer, _free_buffer function pointers (swbz#23236)
2018-08-29 12:09:45 +02:00
.gitignore Add release-independent .gitignore file 2018-08-01 13:18:37 +02:00
bench.mk
build-locale-archive.c
ChangeLog.old Rotate RPM changelog 2017-10-07 12:57:14 +02:00
gen-quilt-series.sh
glibc_post_upgrade.c Do not run telinit u on upgrades (#1579225) 2018-05-17 13:52:23 +02:00
glibc-arm-hardfloat-3.patch Restore ARM EABI dynamic loader support (#1491974) 2017-09-15 10:02:38 +02:00
glibc-bench-compare
glibc-c-utf8-locale.patch
glibc-cs-path.patch
glibc-fedora-__libc_multiple_libcs.patch Resolves: #1462820 2017-06-20 00:18:02 +02:00
glibc-fedora-elf-ORIGIN.patch
glibc-fedora-i386-tls-direct-seg-refs.patch
glibc-fedora-linux-tcsetattr.patch Auto-sync with upstream master 2017-07-03 21:49:42 +02:00
glibc-fedora-localedata-rh61908.patch
glibc-fedora-localedef.patch
glibc-fedora-locarchive.patch
glibc-fedora-manual-dircategory.patch
glibc-fedora-nis-rh188246.patch
glibc-fedora-nptl-linklibc.patch Auto-sync with upstream master 2017-05-23 14:37:59 +02:00
glibc-fedora-nscd.patch
glibc-fedora-streams-rh436349.patch
glibc-nscd-reproducible.patch Make build of nscd reproducible 2017-10-07 12:52:17 +02:00
glibc-nscd-sysconfig.patch
glibc-nss_compat.patch Remove libnsl dependency from nss_compat 2017-10-07 12:53:49 +02:00
glibc-rh697421.patch
glibc-rh741105.patch
glibc-rh819430.patch
glibc-rh827510.patch
glibc-rh952799.patch
glibc-rh1013801.patch
glibc-rh1070416.patch
glibc-rh1315108-glob.patch Auto-sync with upstream branch release/2.26/master 2017-10-21 15:26:35 +02:00
glibc-rh1315108.patch Auto-sync with upstream branch release/2.26/master 2018-05-18 10:58:08 +02:00
glibc-rh1315476-2.patch
glibc-rh1324623.patch Use vpath in crypt-glibc/Makefile to obtain the test input file 2017-01-25 16:46:01 +01:00
glibc-rh1416405.patch Auto-sync with upstream release/2.26/master 2017-10-01 17:50:48 +02:00
glibc-rh1484729-syscall-names.patch glibc-rh1484729.patch was committed upstream 2017-08-28 19:59:15 +02:00
glibc-rh1484729.patch Auto-sync with upstream branch release/2.26/master 2017-12-22 16:18:34 +01:00
glibc-rh1498880-1.patch Do not flush stdio streams on abort, assertion failure (#1498880) 2017-10-07 12:47:55 +02:00
glibc-rh1498880-2.patch Do not flush stdio streams on abort, assertion failure (#1498880) 2017-10-07 12:47:55 +02:00
glibc-rh1615608.patch Resolves: #1615608 2018-08-14 00:50:00 -04:00
glibc.spec Auto-sync with upstream branch release/2.26/master 2018-08-29 12:09:45 +02:00
nscd.conf
nsswitch.conf Resolves: #1427646 2017-03-01 14:03:09 +01:00
power6emul.c
quilt-patch.sh quilt-patch.sh: Support new "sources" file format 2017-01-02 13:32:40 +01:00
README.quilt
sources Auto-sync with upstream branch release/2.26/master 2018-08-29 12:09:45 +02:00
STAGE1-glibc
STAGE1-glibc-headers
SUPPORTED Auto-sync with upstream release/2.26/master 2017-08-16 11:25:22 +02:00
sync-upstream.sh

This package supports working with patch files using quilt.

To regenerate the quilt series file run:
./gen-quilt-series.sh

Setup environment:
export QUILT_PATCHES=$PWD

Setup the source:
./quilt-patch.sh [-f]

Use `-f` if you want to have quilt-patch always remove the existing
source directory before starting. Otherwise you'll be patching on top of
an already patched tree generated perhaps by `*pkg prep`.

Create a new patch:
cd glibc-2.17-c758a686/
quilt new glibc-rh1234622.patch
quilt add ports/sysdeps/unix/sysv/linux/aarch64/nptl/libpthread.abilist
vi ports/sysdeps/unix/sysv/linux/aarch64/nptl/libpthread.abilist
quilt refresh
cd ..
git add glibc-rh1234622.patch
<Then edit the glibc.spec file to build with the new patch>
e.g.
...
PatchXXXX: glibc-rh1234622.patch
...
%patchXXXX -p1
...
git add glibc.spec
git commit

You're done!