diff options
author | Vicente Olivert Riera <Vincent.Riera@imgtec.com> | 2014-12-11 12:17:32 +0000 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-12-11 19:50:30 +0100 |
commit | adeddeab2c765091b3877e8fea41763b38f0ae0e (patch) | |
tree | e8beea726dbc13c8955f56a9f47308ea100241d9 /package/systemd/0004-Properly-define-the-__NR_memfd_create-macro-for-MIPS.patch | |
parent | f9fa4ffc67b53c35b7b40fa9d6df9d3dd4708636 (diff) | |
download | buildroot-adeddeab2c765091b3877e8fea41763b38f0ae0e.tar.gz buildroot-adeddeab2c765091b3877e8fea41763b38f0ae0e.zip |
systemd: bump version to v218
Trivial changes:
- Bump version to v218
- Update the hash file
Non-trivial changes:
- Remove upstreamed patch
The patch was added by this upstream commit:
http://cgit.freedesktop.org/systemd/systemd/commit/?id=e6c019026b8cfd27a997e6e6ed1349f8f289b7e2
- Remove non-existent configure options
--with-firmware-path option was removed by this upstream commit:
http://cgit.freedesktop.org/systemd/systemd/commit/?id=be2ea723b1d023b3d385d3b791ee4607cbfb20ca
--disable-tcpwrap option was removed by this upstream commit:
http://cgit.freedesktop.org/systemd/systemd/commit/?id=7f8aa67131cfc03ddcbd31c0420754864fc122f0
- Select a required dependency
libmount dependency was added by this upstream commit:
http://cgit.freedesktop.org/systemd/systemd/commit/?id=8d3ae2bd4c9bf9fc2e57f7b3776325a1c750ca30
The error for not satisfying this required dependency looks like this:
checking for MOUNT... no
configure: error: *** libmount support required but libraries not
found
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/systemd/0004-Properly-define-the-__NR_memfd_create-macro-for-MIPS.patch')
-rw-r--r-- | package/systemd/0004-Properly-define-the-__NR_memfd_create-macro-for-MIPS.patch | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/package/systemd/0004-Properly-define-the-__NR_memfd_create-macro-for-MIPS.patch b/package/systemd/0004-Properly-define-the-__NR_memfd_create-macro-for-MIPS.patch deleted file mode 100644 index 9ce64c92ef..0000000000 --- a/package/systemd/0004-Properly-define-the-__NR_memfd_create-macro-for-MIPS.patch +++ /dev/null @@ -1,48 +0,0 @@ -Properly define the __NR_memfd_create macro for MIPS - -This is an upstream patch which has been applied to the master branch -and I have adapted it to make it apply to the v217 version. - -Upstream commit: - http://cgit.freedesktop.org/systemd/systemd/commit/?id=e6c019026b8cfd27a997e6e6ed1349f8f289b7e2 - -Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> - -From a51496db6edc8168268c86ea55915405f95b0212 Mon Sep 17 00:00:00 2001 -From: Vicente Olivert Riera <Vincent.Riera@imgtec.com> -Date: Thu, 13 Nov 2014 17:32:52 +0000 -Subject: [PATCH] Properly define the __NR_memfd_create macro for MIPS - -This macro exists for MIPS since v3.17: - https://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/commit/?id=42944521af97a3b25516f15f3149aec3779656dc - -Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> ---- - src/shared/missing.h | 11 +++++++++-- - 1 files changed, 9 insertions(+), 2 deletions(-) - -diff --git a/src/shared/missing.h b/src/shared/missing.h -index bb4f8f2..66bedcf 100644 ---- a/src/shared/missing.h -+++ b/src/shared/missing.h -@@ -125,8 +125,15 @@ static inline int pivot_root(const char *new_root, const char *put_old) { - # endif - #elif defined _MIPS_SIM - # ifndef __NR_memfd_create --# warning "__NR_memfd_create not yet defined for MIPS" --# define __NR_memfd_create 0xffffffff -+# if _MIPS_SIM == _MIPS_SIM_ABI32 -+# define __NR_memfd_create 4354 -+# endif -+# if _MIPS_SIM == _MIPS_SIM_NABI32 -+# define __NR_memfd_create 6318 -+# endif -+# if _MIPS_SIM == _MIPS_SIM_ABI64 -+# define __NR_memfd_create 5314 -+# endif - # endif - #else - # ifndef __NR_memfd_create --- -1.7.1 - |