From 8f9f48a29a8478dce203b7b0e439ef5303b05475 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Wed, 15 Jun 2016 10:54:43 +0100 Subject: 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. (From OE-Core rev: 324f7cea3e73eb3f64cdfa221398797ddd2b50e9) Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- .../recipes-kernel/oprofile/oprofileui-server/init | 37 ---------------------- 1 file changed, 37 deletions(-) delete mode 100755 meta/recipes-kernel/oprofile/oprofileui-server/init (limited to 'meta/recipes-kernel/oprofile/oprofileui-server/init') 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 -- cgit v1.2.3-54-g00ecf