Go to file
Jakub Hrozek 305fa9fb57 Resolves: #1427646
Reverse the order of sss and files modules for passwd and group maps
2017-03-01 14:03:09 +01:00
bench.mk Add benchmark comparison 2015-05-08 11:49:59 +05:30
build-locale-archive.c Resolves: #1349906 2016-06-24 13:51:56 -04:00
ChangeLog.old
gen-quilt-series.sh Update gen-quilt-series script. 2016-04-29 23:11:30 -04:00
glibc_post_upgrade.c Resolves: #902094, #1262040 2015-09-17 12:24:49 -04:00
glibc-aarch64-tls-fixes.patch
glibc-aarch64-workaround-nzcv-clobber-in-tlsdesc.patch Sync with upstream master 2015-07-28 08:17:23 +05:30
glibc-arm-hardfloat-3.patch
glibc-bench-compare Add benchmark comparison 2015-05-08 11:49:59 +05:30
glibc-c-utf8-locale.patch Auto-sync with upstream master. 2016-04-29 23:08:42 -04:00
glibc-cs-path.patch
glibc-fedora-__libc_multiple_libcs.patch
glibc-fedora-elf-ORIGIN.patch
glibc-fedora-i386-tls-direct-seg-refs.patch
glibc-fedora-include-bits-ldbl.patch
glibc-fedora-ldd.patch
glibc-fedora-linux-tcsetattr.patch
glibc-fedora-localedata-rh61908.patch
glibc-fedora-localedef.patch Sync with upstream master 2015-05-18 12:21:44 +05:30
glibc-fedora-locarchive.patch
glibc-fedora-manual-dircategory.patch
glibc-fedora-nis-rh188246.patch
glibc-fedora-nptl-linklibc.patch
glibc-fedora-nscd.patch
glibc-fedora-ppc-unwind.patch
glibc-fedora-streams-rh436349.patch
glibc-gcc-PR69537.patch Add workaround for GCC PR69537 2016-01-28 14:24:44 +01:00
glibc-gcc-strict-overflow.patch glibc-2.24.90-31 2017-02-08 16:17:57 -05:00
glibc-nscd-sysconfig.patch
glibc-rh697421.patch
glibc-rh741105.patch Sync with upstream master. 2015-10-21 15:24:28 -04:00
glibc-rh819430.patch
glibc-rh825061.patch
glibc-rh827510.patch
glibc-rh952799.patch
glibc-rh1009145.patch
glibc-rh1013801.patch Auto-sync with upstream master. 2016-09-20 23:29:23 -04:00
glibc-rh1070416.patch
glibc-rh1315108.patch Auto-sync with upstream master 2017-01-02 13:32:25 +01:00
glibc-rh1315476-2.patch Auto-sync with upstream master 2017-01-02 13:32:25 +01:00
glibc-rh1324623.patch Use vpath in crypt-glibc/Makefile to obtain the test input file 2017-01-25 16:46:01 +01:00
glibc-rh1351108-update-to-unicode-9.0.0.patch Resolves: #1351108 2016-07-09 07:35:43 +02:00
glibc.spec Resolves: #1427646 2017-03-01 14:03:09 +01: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 Resolves: #902094, #1262040 2015-09-17 12:24:49 -04:00
sources Auto-sync with upstream release/2.25/master 2017-02-28 17:43:41 +01:00
STAGE1-glibc Adding BUILD_CC to the STAGE1 bootstrap recipes 2015-12-03 15:34:40 +01:00
STAGE1-glibc-headers Adding BUILD_CC to the STAGE1 bootstrap recipes 2015-12-03 15:34:40 +01:00
SUPPORTED Auto-sync with upstream master 2016-07-13 14:23:26 +02:00
sync-upstream.sh Auto-sync with upstream master. 2016-04-29 23:08:42 -04:00

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!