diff options
Diffstat (limited to 'meta/recipes-extended/procps/procps_3.2.7.bb')
| -rw-r--r-- | meta/recipes-extended/procps/procps_3.2.7.bb | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/meta/recipes-extended/procps/procps_3.2.7.bb b/meta/recipes-extended/procps/procps_3.2.7.bb new file mode 100644 index 0000000000..6da975adc7 --- /dev/null +++ b/meta/recipes-extended/procps/procps_3.2.7.bb | |||
| @@ -0,0 +1,64 @@ | |||
| 1 | require procps.inc | ||
| 2 | |||
| 3 | PR = "r8" | ||
| 4 | |||
| 5 | inherit update-rc.d | ||
| 6 | |||
| 7 | INITSCRIPT_NAME = "procps.sh" | ||
| 8 | INITSCRIPT_PARAMS = "start 30 S ." | ||
| 9 | |||
| 10 | SRC_URI += "file://procmodule.patch;patch=1 \ | ||
| 11 | file://psmodule.patch;patch=1 \ | ||
| 12 | file://linux-limits.patch;patch=1 \ | ||
| 13 | file://sysctl.conf \ | ||
| 14 | file://procps.init \ | ||
| 15 | " | ||
| 16 | |||
| 17 | FILES = "${bindir}/top.${PN} ${base_bindir}/ps.${PN} ${bindir}/uptime.${PN} ${base_bindir}/kill.${PN} \ | ||
| 18 | ${bindir}/free.${PN} ${bindir}/w ${bindir}/watch ${bindir}/pgrep ${bindir}/pmap ${bindir}/pwdx \ | ||
| 19 | ${bindir}/snice ${bindir}/vmstat ${bindir}/slabtop ${bindir}/pkill ${bindir}/skill ${bindir}/tload \ | ||
| 20 | ${base_sbindir}/sysctl.${PN}" | ||
| 21 | |||
| 22 | CONFFILES_${PN} = "${sysconfdir}/sysctl.conf" | ||
| 23 | |||
| 24 | EXTRA_OEMAKE = "CFLAGS=-I${STAGING_INCDIR} \ | ||
| 25 | CPPFLAGS=-I${STAGING_INCDIR} \ | ||
| 26 | LDFLAGS="${LDFLAGS}" \ | ||
| 27 | CURSES=-lncurses \ | ||
| 28 | install='install -D' \ | ||
| 29 | ldconfig=echo" | ||
| 30 | |||
| 31 | do_install_append () { | ||
| 32 | install -d ${D}${sysconfdir} | ||
| 33 | install -m 0644 ${WORKDIR}/sysctl.conf ${D}${sysconfdir}/sysctl.conf | ||
| 34 | install -d ${D}${sysconfdir}/init.d | ||
| 35 | install -m 0755 ${WORKDIR}/procps.init ${D}${sysconfdir}/init.d/procps.sh | ||
| 36 | |||
| 37 | mv ${D}${bindir}/uptime ${D}${bindir}/uptime.${PN} | ||
| 38 | mv ${D}${bindir}/top ${D}${bindir}/top.${PN} | ||
| 39 | mv ${D}${base_bindir}/kill ${D}${base_bindir}/kill.${PN} | ||
| 40 | mv ${D}${base_bindir}/ps ${D}${base_bindir}/ps.${PN} | ||
| 41 | mv ${D}${bindir}/free ${D}${bindir}/free.${PN} | ||
| 42 | mv ${D}${base_sbindir}/sysctl ${D}${base_sbindir}/sysctl.${PN} | ||
| 43 | mv ${D}${bindir}/pkill ${D}${bindir}/pkill.${PN} | ||
| 44 | } | ||
| 45 | |||
| 46 | pkg_postinst() { | ||
| 47 | update-alternatives --install ${bindir}/top top top.${PN} 90 | ||
| 48 | update-alternatives --install ${bindir}/uptime uptime uptime.${PN} 90 | ||
| 49 | update-alternatives --install ${base_bindir}/ps ps ps.${PN} 90 | ||
| 50 | update-alternatives --install ${base_bindir}/kill kill kill.${PN} 90 | ||
| 51 | update-alternatives --install ${bindir}/free free free.${PN} 90 | ||
| 52 | update-alternatives --install ${base_sbindir}/sysctl sysctl sysctl.${PN} 90 | ||
| 53 | update-alternatives --install ${bindir}/pkill pkill pkill.${PN} 90 | ||
| 54 | } | ||
| 55 | |||
| 56 | pkg_postrm() { | ||
| 57 | update-alternatives --remove top top.${PN} | ||
| 58 | update-alternatives --remove ps ps.${PN} | ||
| 59 | update-alternatives --remove uptime uptime.${PN} | ||
| 60 | update-alternatives --remove kill kill.${PN} | ||
| 61 | update-alternatives --remove free free.${PN} | ||
| 62 | update-alternatives --remove sysctl sysctl.${PN} | ||
| 63 | update-alternatives --remove pkill pkill.${PN} | ||
| 64 | } | ||
