CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
rc: updated to upstream 2.24
authorJose V Beneyto <sepen@crux.nu>
Thu, 10 Dec 2009 11:02:23 +0000 (12:02 +0100)
committerJose V Beneyto <sepen@crux.nu>
Thu, 10 Dec 2009 11:02:23 +0000 (12:02 +0100)
rc/.md5sum
rc/Pkgfile
rc/inittab
rc/rc [changed mode: 0755->0644]
rc/rc#2.24-1.pkg.tar.gz [new file with mode: 0644]
rc/rc.conf
rc/rc.fix [changed mode: 0755->0644]
rc/rc.local [changed mode: 0755->0644]
rc/rc.modules [changed mode: 0755->0644]
rc/rc.multi [changed mode: 0755->0644]
rc/rc.single [changed mode: 0755->0644]

index 62af0e2cb7515db34df375f6d36580d1a416cb43..8322fcc0c3eda8ecad01435328c53248a5a25f49 100644 (file)
@@ -1,6 +1,6 @@
-82083bae2058cfb1d4f8764bfb309e3e  inittab
-32f67e5e22c9048054541117be84582f  rc
-a9d2ef04be098b44383823090ae57fc8  rc.conf
+d2a8e98a8b10ba09b2a9da34326b526a  inittab
+d60fc342d2498974828a276bd5fe902b  rc
+c8fe38143dffbbc628a7a33966fae408  rc.conf
 5b09d4a67beb58022879fa9ce0f5af1b  rc.fix
 d1be35927946756c68242f29c16ee983  rc.local
 394d5cff98ab59fd1a0ec64fe79292cb  rc.modules
index 240a6fafd7cfc4db28ac66334783c357b7f9721a..5cdebab349e6fc145b4609e424a8f1a330f9fcf3 100644 (file)
@@ -1,12 +1,12 @@
 # Description: BSD-like init-scripts
 # URL: http://crux.nu
 # Maintainer: CRUX System Team, core-ports at crux dot nu
-# Arch Maintainer: CRUX ARM System Team
+# Arch Maintainer: CRUX ARM System Team, crux-arm at mikeux dot dyndns dot org
 # Depends on:
 
 name=rc
-version=2.21
-release=8
+version=2.24
+release=1
 source=(inittab rc rc.modules rc.single rc.multi rc.local rc.fix rc.shutdown rc.conf)
 
 build() {
index 0cffa2aaec610e3c13da3b6e98283c3649c5663a..ba613fd667cc6c878de0f6d7be9a3a4033e5b6a5 100644 (file)
@@ -23,6 +23,7 @@ c3:2:respawn:/sbin/agetty 38400 tty3 linux
 c4:2:respawn:/sbin/agetty 38400 tty4 linux
 c5:2:respawn:/sbin/agetty 38400 tty5 linux
 c6:2:respawn:/sbin/agetty 38400 tty6 linux
+#s1:2:respawn:/sbin/agetty 38400 ttyS0 vt100
 
 ca::ctrlaltdel:/sbin/shutdown -t3 -r now
 
diff --git a/rc/rc b/rc/rc
old mode 100755 (executable)
new mode 100644 (file)
index f26e95f..82518f1
--- a/rc/rc
+++ b/rc/rc
@@ -3,7 +3,7 @@
 # /etc/rc: system boot script
 #
 
-echo "The system is coming up. Please wait."
+echo "The system is coming up.  Please wait."
 
 # Load configuration
 . /etc/rc.conf
@@ -13,6 +13,12 @@ echo "The system is coming up. Please wait."
 /bin/mount -n -t sysfs none /sys
 /sbin/start_udev
 
+# Create device-mapper device nodes and scan for LVM volume groups
+if [ -x /sbin/lvm ]; then
+       /sbin/vgscan --mknodes --ignorelockingfailure
+       /sbin/vgchange --ignorelockingfailure -a y
+fi
+
 # Mount root read-only
 /bin/mount -n -o remount,ro /
 
@@ -51,8 +57,7 @@ fi
 
 # Clean up misc files
 : > /var/run/utmp
-/bin/rm -rf /forcefsck /fastboot /halt /poweroff
-/bin/rm -rf /etc/nologin /etc/shutdownpid
+/bin/rm -rf /forcefsck /fastboot /etc/nologin /etc/shutdownpid
 (cd /var/run && /usr/bin/find . -name "*.pid" -delete)
 (cd /var/lock && /usr/bin/find . ! -type d -delete)
 (cd /tmp && /usr/bin/find . ! -name . -delete)
@@ -77,7 +82,7 @@ fi
 if [ "$TIMEZONE" ]; then
        /bin/ln -snf /usr/share/zoneinfo/$TIMEZONE /etc/localtime
 fi
-#/sbin/hwclock --hctosys
+/sbin/hwclock --hctosys
 
 # Load console font
 if [ "$FONT" ]; then
@@ -88,11 +93,11 @@ fi
 # Load console keymap
 if [ "$KEYMAP" ]; then
        echo "keyboard: $KEYMAP"
-       /bin/loadkeys -q $KEYMAP
+       /usr/bin/loadkeys -q $KEYMAP
 fi
 
-# Screen blanks after 5 minutes idle time
-/usr/bin/setterm -blank 5
+# Screen blanks after 15 minutes idle time
+/usr/bin/setterm -blank 15
 
 # Run module initialization script
 if [ -x /etc/rc.modules ]; then
diff --git a/rc/rc#2.24-1.pkg.tar.gz b/rc/rc#2.24-1.pkg.tar.gz
new file mode 100644 (file)
index 0000000..fb12cba
Binary files /dev/null and b/rc/rc#2.24-1.pkg.tar.gz differ
index 0b80d2cb4ad0d0e41f5e2027df3cc1b86aee2392..6c28c0530b06bbcf3cc2156a4465e3b61264ec15 100644 (file)
@@ -5,8 +5,8 @@
 FONT=default
 KEYMAP=us
 TIMEZONE=UTC
-HOSTNAME=j72x
+HOSTNAME=host
 SYSLOG=sysklogd
-SERVICES=()
+SERVICES=(net crond)
 
 # End of file
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)