# HG changeset patch # User Christophe Lincoln # Date 1302058851 -7200 # Node ID 9fdf071862a66f7014e7cd25185ba12703f9064a # Parent 9c2622b96993df866220d94afbb33f17ccfde245 Move bootlog script to bin/ diff -r 9c2622b96993 -r 9fdf071862a6 bin/bootlog --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bin/bootlog Wed Apr 06 05:00:51 2011 +0200 @@ -0,0 +1,4 @@ +#!/bin/sh +# tazbootlog: Display SliTaz boot log messages. +# +cat /var/log/dmesg.log /var/log/boot.log | sed "s/.\[3g.*\]R//" diff -r 9c2622b96993 -r 9fdf071862a6 bootlog --- a/bootlog Wed Apr 06 04:11:36 2011 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,4 +0,0 @@ -#!/bin/sh -# tazbootlog: Display SliTaz boot log messages. -# -cat /var/log/dmesg.log /var/log/boot.log | sed "s/.\[3g.*\]R//" diff -r 9c2622b96993 -r 9fdf071862a6 etc/init.d/rcS --- a/etc/init.d/rcS Wed Apr 06 04:11:36 2011 +0200 +++ b/etc/init.d/rcS Wed Apr 06 05:00:51 2011 +0200 @@ -258,6 +258,9 @@ # by boot options (screen=text will remove slim). . /etc/rcS.conf +# Auto recharge packages list (after network connection of course) +[ "$RECHARGE_PACKAGES_LIST" == "yes" ] && tazpkg recharge & + # Start all daemons specified with $RUN_DAEMONS. echo "Starting all daemons specified in /etc/rcS.conf..." for daemon in $RUN_DAEMONS diff -r 9c2622b96993 -r 9fdf071862a6 etc/rcS.conf --- a/etc/rcS.conf Wed Apr 06 04:11:36 2011 +0200 +++ b/etc/rcS.conf Wed Apr 06 05:00:51 2011 +0200 @@ -26,13 +26,17 @@ KERNEL_LOG_DAEMONS="yes" SYSLOGD_ROTATED_SIZE="60" -# Kernel modules to automatically load at boot time. You can use 'modprobe -l' -# to get a list of all kernel modules available. -# -# For Intel and some Nvidia sound cards : snd_intel8x0 snd_intel8x0m snd_hda_intel -# +# Kernel modules to automatically load at boot time if not automaticaly +# detected. You can use 'modprobe -l' to get a list of all kernel modules +# available. LOAD_MODULES=" " +# Automaticaly recharge packages list on each boot and in background. +# If new packages or upgrade are avalaible they will be notified with +# tazpkg-notify. Here we just recharge list, we dont install anything +# since root user should check visualy packages that will be upgraded. +RECHARGE_PACKAGES_LIST="no" + # Initialization scripts to run at boot time. Boot order is important: # bootopts.sh (boot options) must start first, hwconf.sh after network.sh (tazx # needs an active connection to install Xorg), then you are free to choose.