Hello community, here is the log from the commit of package aaa_base checked in at Fri Sep 14 16:02:31 CEST 2007. -------- --- aaa_base/aaa_base.changes 2007-09-13 13:00:07.000000000 +0200 +++ /mounts/work_src_done/STABLE/aaa_base/aaa_base.changes 2007-09-14 15:56:36.589647000 +0200 @@ -1,0 +2,8 @@ +Fri Sep 14 15:19:21 CEST 2007 - ro@suse.de + +- sysconfig/sysctl: enhance ENABLE_SYSRQ value: + apart from yes/no this variable can hold a numeric value + to enable specific sysrq controls (#257405) +- default is now "176" (allow s,u,b) + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ aaa_base.spec ++++++ --- /var/tmp/diff_new_pack.hJ8115/_old 2007-09-14 16:01:41.000000000 +0200 +++ /var/tmp/diff_new_pack.hJ8115/_new 2007-09-14 16:01:41.000000000 +0200 @@ -17,9 +17,9 @@ Provides: bin bootutls etc skeleng skelger Requires: aaa_skel filesystem distribution-release logrotate /bin/mktemp /usr/bin/find /usr/bin/xargs mingetty cpio udev PreReq: /usr/bin/sed /usr/bin/grep /bin/mv /bin/cat /bin/ls /bin/date /usr/bin/cmp /bin/fillup /sbin/insserv net-tools -Autoreqprov: on +AutoReqProv: on Version: 10.3 -Release: 86 +Release: 87 Summary: SUSE Linux Base Package BuildRoot: %{_tmppath}/%{name}-%{version}-build Source: aaa_base.tar.bz2 @@ -134,6 +134,11 @@ %defattr(-,root,root) %changelog +* Fri Sep 14 2007 - ro@suse.de +- sysconfig/sysctl: enhance ENABLE_SYSRQ value: + apart from yes/no this variable can hold a numeric value + to enable specific sysrq controls (#257405) +- default is now "176" (allow s,u,b) * Thu Sep 13 2007 - meissner@suse.de - remove MALLOC_CHECK_ for RC1. * Wed Sep 12 2007 - werner@suse.de ++++++ aaa_base.tar.bz2 ++++++ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/aaa_base/etc/init.d/boot.proc new/aaa_base/etc/init.d/boot.proc --- old/aaa_base/etc/init.d/boot.proc 2007-06-20 11:56:15.000000000 +0200 +++ new/aaa_base/etc/init.d/boot.proc 2007-09-14 15:17:44.000000000 +0200 @@ -31,11 +31,13 @@ case "$a" in *sysrq=yes*|*sysrq=1*) ENABLE_SYSRQ="yes" ;; esac - if test "$ENABLE_SYSRQ" = yes ; then - echo "1" > /proc/sys/kernel/sysrq - else - echo "0" > /proc/sys/kernel/sysrq - fi + case "$ENABLE_SYSRQ" in + yes) ENABLE_SYSRQ=1 ;; + no) ENABLE_SYSRQ=0 ;; + [0-9]*) ;; + *) ENABLE_SYSRQ=0 ;; + esac + echo "$ENABLE_SYSRQ" > /proc/sys/kernel/sysrq fi # ++++++ sysconfig_parts.tar.bz2 ++++++ Files old/sysconfig_parts/.sysconfig.mail.swp and new/sysconfig_parts/.sysconfig.mail.swp differ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/sysconfig_parts/sysconfig.sysctl new/sysconfig_parts/sysconfig.sysctl --- old/sysconfig_parts/sysconfig.sysctl 2006-08-01 15:08:54.000000000 +0200 +++ new/sysconfig_parts/sysconfig.sysctl 2007-09-14 15:55:17.000000000 +0200 @@ -66,12 +66,24 @@ ## Path: System/Kernel ## Description: -## Type: yesno -## Default: no +## Type: string +# +# Magic SysRq Keys enable some control over the system even if it +# crashes (e.g. during kernel debugging). +# +# Possible values: +# - no: disable sysrq completely +# - yes: enable all functions of sysrq +# - bitmask of allowed sysrq functions: +# 2 - enable control of console logging level +# 4 - enable control of keyboard (SAK, unraw) +# 8 - enable debugging dumps of processes etc. +# 16 - enable sync command +# 32 - enable remount read-only +# 64 - enable signalling of processes (term, kill, oom-kill) +# 128 - allow reboot/poweroff +# 256 - allow nicing of all RT tasks # -# Enable Magic SysRq Keys? -# If you say yes here, you will have some control over the system even -# if it crashes (e.g. during kernel debugging). # For further information see /usr/src/linux/Documentation/sysrq.txt # -ENABLE_SYSRQ="no" +ENABLE_SYSRQ="176" ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 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