From 4af3217ec08d1a184691c40c5d5c7a45c4dc5872 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 11 Feb 2010 00:28:37 +0100 Subject: [PATCH] busybox: - run bootchart at background - output from bootchart now in /storage/bootchart --- packages/sysutils/busybox/scripts/init | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/sysutils/busybox/scripts/init b/packages/sysutils/busybox/scripts/init index bcf910ef75..0107ce77ed 100755 --- a/packages/sysutils/busybox/scripts/init +++ b/packages/sysutils/busybox/scripts/init @@ -1,7 +1,10 @@ #!/bin/sh # start bootchartd if avaible - [ -f /sbin/bootchartd ] && /sbin/bootchartd -o /storage +if [ -f /sbin/bootchartd ]; then + mkdir -p /storage/bootchart + /sbin/bootchartd -o /storage/bootchart & +fi # read config . /etc/sysconfig