diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2011-11-10 16:03:26 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-15 12:05:27 +0000 |
commit | bca2c0b614838a3c26d66e00ff9389da3b11c583 (patch) | |
tree | 4326a82f882acc7ad852cf7e88f354f5343d2114 /meta/recipes-core/util-linux | |
parent | fa814476fb351120c6ef2fa683a3aa1aa351e2c5 (diff) | |
download | poky-bca2c0b614838a3c26d66e00ff9389da3b11c583.tar.gz |
util-linux: add missing u-a calls for setsid chrt
* someone added them to usrbinprogs_a, but without u-a calls added
* similar problem is with chfn chsh newgrp, but those are not built in
current version
(From OE-Core rev: 14bc68b03e65a9236a1c0d16403371d4ef742588)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/util-linux')
-rw-r--r-- | meta/recipes-core/util-linux/util-linux.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-core/util-linux/util-linux.inc b/meta/recipes-core/util-linux/util-linux.inc index 3b807360f4..855a54572c 100644 --- a/meta/recipes-core/util-linux/util-linux.inc +++ b/meta/recipes-core/util-linux/util-linux.inc | |||
@@ -191,6 +191,8 @@ pkg_postinst_${PN} () { | |||
191 | update-alternatives --install ${bindir}/mesg mesg mesg.${PN} 100 | 191 | update-alternatives --install ${bindir}/mesg mesg mesg.${PN} 100 |
192 | update-alternatives --install ${bindir}/renice renice renice.${PN} 100 | 192 | update-alternatives --install ${bindir}/renice renice renice.${PN} 100 |
193 | update-alternatives --install ${bindir}/wall wall wall.${PN} 100 | 193 | update-alternatives --install ${bindir}/wall wall wall.${PN} 100 |
194 | update-alternatives --install ${bindir}/setsid setsid setsid.${PN} 100 | ||
195 | update-alternatives --install ${bindir}/chrt chrt chrt.${PN} 100 | ||
194 | update-alternatives --install ${bindir}/flock flock flock.${PN} 100 | 196 | update-alternatives --install ${bindir}/flock flock flock.${PN} 100 |
195 | 197 | ||
196 | # There seems to be problem, atleast on nslu2, with these, untill they are | 198 | # There seems to be problem, atleast on nslu2, with these, untill they are |
@@ -221,6 +223,8 @@ pkg_prerm_${PN} () { | |||
221 | update-alternatives --remove mesg mesg.${PN} | 223 | update-alternatives --remove mesg mesg.${PN} |
222 | update-alternatives --remove renice renice.${PN} | 224 | update-alternatives --remove renice renice.${PN} |
223 | update-alternatives --remove wall wall.${PN} | 225 | update-alternatives --remove wall wall.${PN} |
226 | update-alternatives --remove setsid setsid.${PN} | ||
227 | update-alternatives --remove chrt chrt.${PN} | ||
224 | update-alternatives --remove flock flock.${PN} | 228 | update-alternatives --remove flock flock.${PN} |
225 | } | 229 | } |
226 | 230 | ||