commit aaa_base for openSUSE:Factory

Hello community, here is the log from the commit of package aaa_base for openSUSE:Factory checked in at Wed Mar 31 19:35:47 CEST 2010. -------- --- aaa_base/aaa_base.changes 2010-03-17 12:59:43.000000000 +0100 +++ /mounts/work_src_done/STABLE/aaa_base/aaa_base.changes 2010-03-29 14:15:46.000000000 +0200 @@ -1,0 +2,11 @@ +Mon Mar 29 14:14:47 CEST 2010 - ro@suse.de + +- boot.cleanup: do cleanup as well in shutdown case, faster + than leaving it to the next boot and can speed up boot sequence + +------------------------------------------------------------------- +Fri Mar 26 19:02:00 CET 2010 - sndirsch@suse.de + +- add NO_KMS_IN_INITRD to sysconfig/kernel. + +------------------------------------------------------------------- calling whatdependson for head-i586 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ aaa_base.spec ++++++ --- /var/tmp/diff_new_pack.XeyunF/_old 2010-03-31 19:35:06.000000000 +0200 +++ /var/tmp/diff_new_pack.XeyunF/_new 2010-03-31 19:35:06.000000000 +0200 @@ -28,7 +28,7 @@ PreReq: /usr/bin/sed /usr/bin/grep /bin/mv /bin/cat /bin/ls /bin/date /usr/bin/cmp /bin/fillup /sbin/insserv AutoReqProv: on Version: 11.2 -Release: 66 +Release: 67 Summary: SUSE Linux Base Package BuildRoot: %{_tmppath}/%{name}-%{version}-build Source: aaa_base.tar.bz2 ++++++ aaa_base.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aaa_base/etc/init.d/boot.cleanup new/aaa_base/etc/init.d/boot.cleanup --- old/aaa_base/etc/init.d/boot.cleanup 2010-03-08 16:32:01.000000000 +0100 +++ new/aaa_base/etc/init.d/boot.cleanup 2010-03-29 14:12:15.000000000 +0200 @@ -25,75 +25,74 @@ rc_reset case "$1" in - start) - # - # clean up - # - rm -f /var/lib/rpm/__db* - rm -rf /tmp/screens /tmp/uscreens /var/run/screens /var/run/uscreens 2>/dev/null - rm -f /tmp/.X*lock /var/spool/uucp/LCK* /var/log/sa/sadc.LOCK /fsck_corrected_errors 2>/dev/null - if test -x /usr/bin/find -a -x /usr/bin/xargs; then - { - find /tmp/ssh-* /tmp/gpg-* -type s -name "*agent*" -maxdepth 1 -print0 - find /var/run /var/lock -type f ! -wholename /var/run/utmp -print0 - if test -d /var/lib/ntp/var/run; then - find /var/lib/ntp/var/run -type f -print0 - fi - } 2>/dev/null | xargs -0r rm -f - else - # fallback for find if we get /usr from nfs - rec_rem() { - for f in "$1"/* - do - test "$f" = /var/run/utmp && continue - test -L "$f" && continue - test -f "$f" && rm -f "$f" - test -d "$f" && rec_rem "$f" - done - } - # - test -d /var/run && rec_rem /var/run - test -d /var/lock && rec_rem /var/lock - fi - touch /var/run/utmp - chmod 664 /var/run/utmp - chown root:tty /var/run/utmp + start|stop|restart) + if test "$1" = "start" -o "$RUNLEVEL" = "6" ; then + # + # clean up + # + rm -f /var/lib/rpm/__db* + rm -rf /tmp/screens /tmp/uscreens /var/run/screens /var/run/uscreens 2>/dev/null + rm -f /tmp/.X*lock /var/spool/uucp/LCK* /var/log/sa/sadc.LOCK /fsck_corrected_errors 2>/dev/null + if test -x /usr/bin/find -a -x /usr/bin/xargs; then + { + find /tmp/ssh-* /tmp/gpg-* -type s -name "*agent*" -maxdepth 1 -print0 + find /var/run /var/lock -type f ! -wholename /var/run/utmp -print0 + if test -d /var/lib/ntp/var/run; then + find /var/lib/ntp/var/run -type f -print0 + fi + } 2>/dev/null | xargs -0r rm -f + else + # fallback for find if we get /usr from nfs + rec_rem() { + for f in "$1"/* + do + test "$f" = /var/run/utmp && continue + test -L "$f" && continue + test -f "$f" && rm -f "$f" + test -d "$f" && rec_rem "$f" + done + } + # + test -d /var/run && rec_rem /var/run + test -d /var/lock && rec_rem /var/lock + fi + touch /var/run/utmp + chmod 664 /var/run/utmp + chown root:tty /var/run/utmp - # Re-read inittab for jobs and redo utmp records if required - test "$PREVLEVEL" = "S" && telinit q + # Re-read inittab for jobs and redo utmp records if required + test "$PREVLEVEL" = "S" && telinit q -# FASTBOOT: This costs us ~1s, and could be done by a simple "mv" -# if at all necessary. -# -# # Restore a possibly dynamically modified /etc/resolv.conf - test "$DO_FASTBOOT" != "yes" && /sbin/netconfig update + # FASTBOOT: This costs us ~1s, and could be done by a simple "mv" + # if at all necessary. + # + # # Restore a possibly dynamically modified /etc/resolv.conf + test "$DO_FASTBOOT" != "yes" && /sbin/netconfig update - # delete temp files - # If $CLEAR_TMP_DIRS_AT_BOOTUP = yes, delete files in - # $TMP_DIRS_TO_CLEAR, if $CLEAR_TMP_DIRS_AT_BOOTUP starts with a "/" - # delete files in those dirs instead. - CLEAR_DIRS="$TMP_DIRS_TO_CLEAR" - if [ "${CLEAR_TMP_DIRS_AT_BOOTUP:0:1}" = "/" ]; then - CLEAR_DIRS="$CLEAR_TMP_DIRS_AT_BOOTUP" - CLEAR_TMP_DIRS_AT_BOOTUP=yes - fi - if test -x /usr/bin/find -a -x /usr/bin/xargs ; then - if test "$CLEAR_TMP_DIRS_AT_BOOTUP" = yes; then - echo -n "Cleaning temporary directories $CLEAR_DIRS" - find $CLEAR_DIRS -mindepth 1 -maxdepth 1 -print0 2>/dev/null | xargs -0r rm -rf - rc_status -v -r - fi + # delete temp files + # If $CLEAR_TMP_DIRS_AT_BOOTUP = yes, delete files in + # $TMP_DIRS_TO_CLEAR, if $CLEAR_TMP_DIRS_AT_BOOTUP starts with a "/" + # delete files in those dirs instead. + CLEAR_DIRS="$TMP_DIRS_TO_CLEAR" + if [ "${CLEAR_TMP_DIRS_AT_BOOTUP:0:1}" = "/" ]; then + CLEAR_DIRS="$CLEAR_TMP_DIRS_AT_BOOTUP" + CLEAR_TMP_DIRS_AT_BOOTUP=yes + fi + if test -x /usr/bin/find -a -x /usr/bin/xargs ; then + if test "$CLEAR_TMP_DIRS_AT_BOOTUP" = yes; then + echo -n "Cleaning temporary directories $CLEAR_DIRS" + find $CLEAR_DIRS -mindepth 1 -maxdepth 1 -print0 2>/dev/null | xargs -0r rm -rf + rc_status -v -r + fi + fi + for CURDIR in /tmp /tmp/.X11-unix /tmp/.ICE-unix \ + /var/tmp /var/tmp/vi.recover /var/run/uscreens ; do + test -d $CURDIR || mkdir -m 1777 $CURDIR + done + for CURDIR in /var/run/screens ; do + test -d $CURDIR || mkdir -m 755 $CURDIR + done fi - for CURDIR in /tmp /tmp/.X11-unix /tmp/.ICE-unix \ - /var/tmp /var/tmp/vi.recover /var/run/uscreens ; do - test -d $CURDIR || mkdir -m 1777 $CURDIR - done - for CURDIR in /var/run/screens ; do - test -d $CURDIR || mkdir -m 755 $CURDIR - done - ;; - stop|restart) - # skip / nothing to do ;; status) # assume we have been run ++++++ sysconfig_parts.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sysconfig_parts/sysconfig.kernel new/sysconfig_parts/sysconfig.kernel --- old/sysconfig_parts/sysconfig.kernel 2008-10-10 00:11:06.000000000 +0200 +++ new/sysconfig_parts/sysconfig.kernel 2010-03-26 19:01:11.000000000 +0100 @@ -8,6 +8,18 @@ # (like drivers for scsi-controllers, for lvm or reiserfs) # INITRD_MODULES="" + +## Type: string(yes) +## Command: /sbin/mkinitrd +## Default: "" +# +# +# This variable disables the initialization of KMS in the initrd +# by not including the modules required for KMS even though KMS is +# supported on the underlying hardware. +# After changing run mkinitrd again. +# +NO_KMS_IN_INITRD="no" ## Type: string ## Command: /sbin/mkinitrd ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 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