commit bootchart for openSUSE:Factory
Hello community, here is the log from the commit of package bootchart for openSUSE:Factory checked in at Fri May 1 02:42:10 CEST 2009. -------- --- bootchart/bootchart.changes 2009-04-06 15:51:26.000000000 +0200 +++ bootchart/bootchart.changes 2009-04-30 15:58:46.000000000 +0200 @@ -1,0 +2,6 @@ +Thu Apr 30 15:57:49 CEST 2009 - coolo@suse.de + +- remove mingetty from the list of processes to check for, it's just + not our target + +------------------------------------------------------------------- calling whatdependson for head-i586 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ bootchart.spec ++++++ --- /var/tmp/diff_new_pack.m18982/_old 2009-05-01 02:41:38.000000000 +0200 +++ /var/tmp/diff_new_pack.m18982/_new 2009-05-01 02:41:38.000000000 +0200 @@ -25,7 +25,7 @@ Group: Development/Tools/Other Summary: Boot Process Charting Application Version: 0.9 -Release: 292 +Release: 293 BuildRoot: %{_tmppath}/%{name}-%{version}-build Source0: %name-%{version}.tar.bz2 Source1: commons-cli-1.0.jar @@ -94,6 +94,9 @@ /lib/mkinitrd %changelog +* Thu Apr 30 2009 coolo@suse.de +- remove mingetty from the list of processes to check for, it's just + not our target * Mon Apr 06 2009 coolo@suse.de - don't kill stapio and blktrace - redo diff ++++++ bootchart-0.9.diff ++++++ --- /var/tmp/diff_new_pack.m18982/_old 2009-05-01 02:41:38.000000000 +0200 +++ /var/tmp/diff_new_pack.m18982/_new 2009-05-01 02:41:38.000000000 +0200 @@ -1,7 +1,8 @@ -diff -ru bootchart-0.9/script/bootchart bootchart-0.9.new//script/bootchart ---- bootchart-0.9/script/bootchart 2005-11-13 18:40:01.000000000 +0100 -+++ bootchart-0.9.new//script/bootchart 2009-04-06 13:26:22.831250526 +0200 -@@ -13,8 +13,8 @@ +Index: bootchart-0.9/script/bootchart +=================================================================== +--- bootchart-0.9.orig/script/bootchart ++++ bootchart-0.9/script/bootchart +@@ -13,8 +13,8 @@ fi # Configuration MAIN_CLASS="org.bootchart.Main" @@ -12,16 +13,17 @@ # Set parameters set_jvm -diff -ru bootchart-0.9/script/bootchartd bootchart-0.9.new//script/bootchartd ---- bootchart-0.9/script/bootchartd 2005-11-13 18:40:01.000000000 +0100 -+++ bootchart-0.9.new//script/bootchartd 2009-04-06 13:27:17.491214771 +0200 +Index: bootchart-0.9/script/bootchartd +=================================================================== +--- bootchart-0.9.orig/script/bootchartd ++++ bootchart-0.9/script/bootchartd @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # # Bootchart logger script # Ziga Mahkovec <ziga.mahkovec@klika.si> -@@ -45,7 +45,7 @@ +@@ -45,7 +45,7 @@ start() # directory. LOG_DIR="$( mktemp -d /tmp/bootchart.XXXXXX 2>/dev/null )" if [ -z "$LOG_DIR" ]; then @@ -30,7 +32,7 @@ LAZY_UMOUNT="yes" mount -n -t tmpfs -o size=$TMPFS_SIZE none "$LOG_DIR" >/dev/null 2>&1 fi -@@ -71,7 +71,7 @@ +@@ -71,7 +71,7 @@ start() # /proc/diskstats is available in 2.6 kernels [ -f /proc/diskstats ] && log_output "cat /proc/diskstats" proc_diskstats.log & @@ -39,7 +41,7 @@ #log_output "ps -eww -o pid,ppid,s,pcpu,comm,cmd" ps.log & if [ -n "$IN_INIT" ]; then -@@ -108,7 +108,7 @@ +@@ -108,7 +108,7 @@ log_output() eval $cmd 2>/dev/null echo sleep $SAMPLE_PERIOD @@ -48,12 +50,12 @@ } # Wait for the boot process to end. -@@ -117,22 +117,31 @@ +@@ -117,22 +117,31 @@ wait_boot() local runlevel=$( sed -n 's/.*:\(.*\):initdefault:.*/\1/gp' /etc/inittab ) # The processes we have to wait for - local exit_proc="gdmgreeter gdm-binary kdm_greet kdm" -+ local exit_proc="gdmgreeter gdm-binary kdm_greet xterm konsole gnome-terminal mingetty stopinitrd icewm-session" ++ local exit_proc="gdmgreeter gdm-binary kdm_greet xterm konsole gnome-terminal stopinitrd icewm-session" # early_login in FC4 starts gdm early, so fall back to mingetty local early_login="no" grep -q early_login /proc/cmdline && early_login="yes" @@ -84,7 +86,7 @@ done; } -@@ -162,6 +171,13 @@ +@@ -162,6 +171,13 @@ stop() log_header # Package log files @@ -98,7 +100,7 @@ tar -zcf "$BOOTLOG_DEST" header $pacct *.log if [ -z "$LAZY_UMOUNT" ]; then rm "$LOG_DIR"/* -@@ -169,8 +185,10 @@ +@@ -169,8 +185,10 @@ stop() fi # Render the chart if configured (and the renderer is installed) @@ -110,7 +112,7 @@ } -@@ -226,6 +244,13 @@ +@@ -226,6 +244,13 @@ if [ $$ -eq 1 ]; then init="${i#*=}" break fi @@ -124,10 +126,11 @@ done exec $init $* fi -diff -ru bootchart-0.9/script/bootchartd.conf bootchart-0.9.new//script/bootchartd.conf ---- bootchart-0.9/script/bootchartd.conf 2005-11-13 18:40:01.000000000 +0100 -+++ bootchart-0.9.new//script/bootchartd.conf 2009-04-06 13:26:22.831250526 +0200 -@@ -16,7 +16,7 @@ +Index: bootchart-0.9/script/bootchartd.conf +=================================================================== +--- bootchart-0.9.orig/script/bootchartd.conf ++++ bootchart-0.9/script/bootchartd.conf +@@ -16,7 +16,7 @@ SAMPLE_PERIOD=0.2 # kernel needs to be configured to enable v3 accounting # (CONFIG_BSD_PROCESS_ACCT_V3). accton from the GNU accounting utilities # is also required. @@ -136,7 +139,7 @@ # Tarball for the various boot log files BOOTLOG_DEST=/var/log/bootchart.tgz -@@ -24,7 +24,7 @@ +@@ -24,7 +24,7 @@ BOOTLOG_DEST=/var/log/bootchart.tgz # Whether to automatically generate the boot chart once the boot logger # completes. The boot chart will be generated in $AUTO_RENDER_DIR. # Note that the bootchart package must be installed. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@Hilbert.suse.de