diff options
author | Saul Wold <sgw@linux.intel.com> | 2014-12-05 23:38:51 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-12-11 11:34:57 +0000 |
commit | 40304fc6b913051ee4a32c68d2fe5f2d04272fd2 (patch) | |
tree | a0e6a3879a5c74416166e8de070fd808ad9b77e3 /meta/recipes-extended/procps/procps_3.2.8.bb | |
parent | 6bcd295f71928ef35bb58b716eef8b3995431688 (diff) | |
download | poky-40304fc6b913051ee4a32c68d2fe5f2d04272fd2.tar.gz |
procps: Upgrade to 3.3.10
This is now the procps-ng version
cleaned up patches
added to fix up usrbin_execprefix in OE-Core
Add CPPFLAGS to allow seperate build directory works
[YOCTO #6952]
(From OE-Core rev: 8a9b9a323f4363e27138077e3e3dce8139a36708)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/procps/procps_3.2.8.bb')
-rw-r--r-- | meta/recipes-extended/procps/procps_3.2.8.bb | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/meta/recipes-extended/procps/procps_3.2.8.bb b/meta/recipes-extended/procps/procps_3.2.8.bb deleted file mode 100644 index fcfde194f1..0000000000 --- a/meta/recipes-extended/procps/procps_3.2.8.bb +++ /dev/null | |||
@@ -1,37 +0,0 @@ | |||
1 | require procps.inc | ||
2 | |||
3 | PR = "r12" | ||
4 | |||
5 | SRC_URI += "file://procmodule.patch \ | ||
6 | file://psmodule.patch \ | ||
7 | file://linux-limits.patch \ | ||
8 | file://sysctl.conf \ | ||
9 | file://procps-3.2.8+gmake-3.82.patch \ | ||
10 | file://gnu-kbsd-version.patch \ | ||
11 | file://60_linux_version_init.patch \ | ||
12 | file://procps-3.2.7-top-remcpu.patch \ | ||
13 | file://procps-3.2.8-ps-cgroup.patch \ | ||
14 | file://detect_bitness.patch \ | ||
15 | file://0001-Fix-musl-build-failure.patch \ | ||
16 | " | ||
17 | |||
18 | SRC_URI[md5sum] = "9532714b6846013ca9898984ba4cd7e0" | ||
19 | SRC_URI[sha256sum] = "11ed68d8a4433b91cd833deb714a3aa849c02aea738c42e6b4557982419c1535" | ||
20 | |||
21 | EXTRA_OEMAKE = 'CFLAGS="${CFLAGS} -I${STAGING_INCDIR}" \ | ||
22 | CPPFLAGS=-I${STAGING_INCDIR} \ | ||
23 | LDFLAGS="${LDFLAGS}" \ | ||
24 | CURSES=-lncurses \ | ||
25 | install="install -D" \ | ||
26 | ldconfig=echo' | ||
27 | |||
28 | do_install_append () { | ||
29 | install -d ${D}${sysconfdir} | ||
30 | install -m 0644 ${WORKDIR}/sysctl.conf ${D}${sysconfdir}/sysctl.conf | ||
31 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then | ||
32 | install -d ${D}${sysconfdir}/sysctl.d | ||
33 | ln -sf ../sysctl.conf ${D}${sysconfdir}/sysctl.d/99-sysctl.conf | ||
34 | fi | ||
35 | } | ||
36 | |||
37 | CONFFILES_${PN} = "${sysconfdir}/sysctl.conf" | ||