diff options
author | Ross Burton <ross.burton@intel.com> | 2016-06-15 10:54:43 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-15 11:26:16 +0100 |
commit | 324f7cea3e73eb3f64cdfa221398797ddd2b50e9 (patch) | |
tree | e4f7abd6c46eba5b8ce4454eef6b5ddfc788aa01 /meta/recipes-kernel/oprofile/oprofileui-server/init | |
parent | c57ab66984bff1ea5596ffe592a0ca1e9ba82ab0 (diff) | |
download | openembedded-core-324f7cea3e73eb3f64cdfa221398797ddd2b50e9.tar.gz openembedded-core-324f7cea3e73eb3f64cdfa221398797ddd2b50e9.tar.bz2 openembedded-core-324f7cea3e73eb3f64cdfa221398797ddd2b50e9.zip |
oprofileui: remove
oprofileui doesn't work anymore with not-so-recent changes to the oprofile
command line interface, and perf is becoming the expected profiling solution so
any future profiling tools should be using that instead.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/oprofile/oprofileui-server/init')
-rwxr-xr-x | meta/recipes-kernel/oprofile/oprofileui-server/init | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/meta/recipes-kernel/oprofile/oprofileui-server/init b/meta/recipes-kernel/oprofile/oprofileui-server/init deleted file mode 100755 index 2544ea4ac0..0000000000 --- a/meta/recipes-kernel/oprofile/oprofileui-server/init +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/sh -### BEGIN INIT INFO -# Provides: oprofile-server -# Required-Start: $network -# Required-Stop: $network -# Default-Start: 2 3 4 5 -# Default-Stop: 0 1 6 -# Short-Description: OProfileUI server -# Description: -### END INIT INFO - -. /etc/init.d/functions - -case "$1" in - start) - echo "Starting OProfileUI server" - . /etc/profile - /usr/bin/oprofile-server & - ;; - - stop) - echo "Stopping OProfileUI server" - killproc oprofile-server - ;; - - restart) - $0 stop - sleep 1 - $0 start - ;; - - *) - echo "usage: $0 { start | stop | restart }" - ;; -esac - -exit 0 |