[arch-commits] CVS update of core/base/initscripts (3 files)

Aaron Griffin aaron at archlinux.org
Mon Mar 17 23:03:48 UTC 2008


    Date: Monday, March 17, 2008 @ 19:03:48
  Author: aaron
    Path: /home/cvs-core/core/base/initscripts

Modified: ChangeLog (1.1 -> 1.2) PKGBUILD (1.186 -> 1.187)
          initscripts.install (1.1 -> 1.2)

upgpkg: initscripts 2008.03-1


---------------------+
 ChangeLog           |  174 ++++++++++++++++++++++++++++++++++++++++++++++++++
 PKGBUILD            |    6 -
 initscripts.install |   10 ++
 3 files changed, 185 insertions(+), 5 deletions(-)


Index: core/base/initscripts/ChangeLog
diff -u core/base/initscripts/ChangeLog:1.1 core/base/initscripts/ChangeLog:1.2
--- core/base/initscripts/ChangeLog:1.1	Thu Feb 21 02:04:08 2008
+++ core/base/initscripts/ChangeLog	Mon Mar 17 19:03:47 2008
@@ -1,3 +1,177 @@
+commit 52a6990bc7ab0b48d6d227a8dcb782cb1d419dd5
+Author: Aaron Griffin <aaronmgriffin at gmail.com>
+Date:   Mon Mar 17 11:34:12 2008 -0500
+
+    Variable expansion quoting
+    
+    This was missed, and caused some gross output if a user
+    mistakenly had a space in their timezone (we should fail
+    gracefully here, not let bash error).
+    
+    Signed-off-by: Aaron Griffin <aaronmgriffin at gmail.com>
+
+commit 15647a9f42a00406ec1c1c02515fe1e90825bd9b
+Author: Roman Kyrylych <roman at archlinux.org>
+Date:   Tue Mar 11 00:02:22 2008 +0200
+
+    Remove the 'makedevs' script
+    
+    * last touched somewhere in 2005
+    * not used by anything
+    * sits in /sbin but uses software from /usr/bin
+    * makedev in Extra exists
+    * if one wants a static /dev - just use mknod
+    
+    Signed-off-by: Roman Kyrylych <roman at archlinux.org>
+
+commit 12ee0a4fe0108fe952dc31c5f42648037b9c5cde
+Author: Roman Kyrylych <roman at archlinux.org>
+Date:   Mon Mar 10 17:58:48 2008 +0200
+
+    Fix a typo in /dev/rtc creation steps
+    
+    Signed-off-by: Roman Kyrylych <roman at archlinux.org>
+
+commit 7526db5d0405188fee94d16fbcfbdf13a17e6a45
+Author: Roman Kyrylych <roman at archlinux.org>
+Date:   Sun Mar 9 17:22:11 2008 +0200
+
+    More full-path fixes
+    
+    Signed-off-by: Roman Kyrylych <roman at archlinux.org>
+
+commit 2c9681f461a0cde98a88de65e232369df68ed859
+Author: Roman Kyrylych <roman at archlinux.org>
+Date:   Sat Mar 8 20:02:09 2008 +0200
+
+    Add basic support for dependencies in rc.d scripts
+    
+    Example of use:
+      DEPENDS=('dbus' 'acpid')
+      . . .
+      ck_depends ${DEPENDS[@]}
+    and those daemons will be started if not running already
+    
+    Signed-off-by: Roman Kyrylych <roman at archlinux.org>
+
+commit 45e331302268490cfb532ea6fe827cba1351ec5b
+Author: Roman Kyrylych <roman at archlinux.org>
+Date:   Sat Mar 8 19:22:48 2008 +0200
+
+    Use full path to binaries everywhere
+    
+    Signed-off-by: Roman Kyrylych <roman at archlinux.org>
+
+commit 6214a05ea023b8bc3014d8032af18b2404276d00
+Author: Roman Kyrylych <roman at archlinux.org>
+Date:   Sat Mar 8 18:45:24 2008 +0200
+
+    Create /dev/rtc before running hwclock (FS#9636)
+    
+    Signed-off-by: Roman Kyrylych <roman at archlinux.org>
+
+commit 973c1b65ad9fb92c6a0e017a7b8bfb40c38b3bcd
+Author: Roman Kyrylych <roman at archlinux.org>
+Date:   Sat Mar 8 19:28:08 2008 +0200
+
+    Fix indentation in rc.d/functions
+    
+    Signed-off-by: Roman Kyrylych <roman at archlinux.org>
+
+commit 646862aa989d82c35d267d5771c6cc620275bf4c
+Author: Aaron Griffin <aaronmgriffin at gmail.com>
+Date:   Fri Mar 7 14:35:31 2008 -0600
+
+    Additional /dev/ setup that udev doesn't do
+    
+    These nodes are not covered by default udev, so lets make
+    sure they're added properly.
+    
+    Ref: FS#9726
+    
+    Signed-off-by: Aaron Griffin <aaronmgriffin at gmail.com>
+
+commit abe6dcb83d16c6e40fed99c202085c78cb356fa1
+Author: Aaron Griffin <aaronmgriffin at gmail.com>
+Date:   Fri Mar 7 14:34:26 2008 -0600
+
+    Add my name to the copyright output
+    
+    Signed-off-by: Aaron Griffin <aaronmgriffin at gmail.com>
+
+commit 91b86efedd70e6b83232057fbf2b089a47b76333
+Author: Roman Kyrylych <roman at archlinux.org>
+Date:   Thu Mar 6 00:24:20 2008 +0200
+
+    Revert back to not loading defkeymap
+    
+    * There is a patch for the kernel now, so no need to workaround the bug
+    * Add a missing check for an empty KEYMAP
+    
+    Signed-off-by: Roman Kyrylych <roman at archlinux.org>
+
+commit 56fffa9954db654c1731e07f753c3de105896455
+Author: Roman Kyrylych <roman at archlinux.org>
+Date:   Sun Mar 2 16:31:34 2008 +0200
+
+    Always load defkeymap
+    
+    It seems that there's a bug in the kernel 2.6.24,
+    which makes the built-in defkeymap to produce incorrect composite chars.
+    Thus keymaps that don't have 'include "compose.latin1"' have issues (FS#9593).
+    While it is better to fix this bug in kernel and all affected keymaps
+    loading defkeymaps before other keymaps seems to not hurt anyway.
+    
+    Signed-off-by: Roman Kyrylych <roman at archlinux.org>
+
+commit f94f52e5ab877ffc3160d0bf20c70be9865d45b2
+Author: Roman Kyrylych <roman at archlinux.org>
+Date:   Sat Mar 1 00:40:02 2008 +0200
+
+    Set up vc/0 as well
+    
+    Signed-off-by: Roman Kyrylych <roman at archlinux.org>
+
+commit 1b5eeefa5a859a9c26a717603bd4c0e9fb74de82
+Author: Roman Kyrylych <roman at archlinux.org>
+Date:   Sat Mar 1 00:04:01 2008 +0200
+
+    Do not mount /proc/bus/usb if commented in fstab
+    
+    Fixes FS#9451
+    
+    Signed-off-by: Roman Kyrylych <roman at archlinux.org>
+
+commit 4d0920ede7ce9c3d67e03c67b9ee584cf1a3fe9d
+Author: Roman Kyrylych <roman at archlinux.org>
+Date:   Thu Feb 28 13:55:41 2008 +0200
+
+    Make non-UTF-8 consoles work correctly in .24+ kernels
+    
+    * Since 2.6.24 the virtual terminal is in UTF-8 mode
+    and the keyboard is in Unicode mode by default,
+    and configurable only at run-time.
+    
+    * To make non-UTF-8 consoles work correctly:
+    - the non-UTF-8 mode is set for the virtual terminal,
+    - the XLATE mode is set for the keyboard.
+    
+    * UTF-8 mode is still set explicitly (not relying on default),
+    so console works correctly even in a case when user set vt.default_utf8=0
+    in kernel commandline, but LOCALE in rc.conf is *.UTF-8.
+    
+    * % is a special symbol for printf, so it should be written twice.
+    
+    Signed-off-by: Roman Kyrylych <roman at archlinux.org>
+
+commit ef86e38e9fd750db35e23aa949aa60e4c9f60f0c
+Author: Roman Kyrylych <roman at archlinux.org>
+Date:   Thu Feb 21 18:07:44 2008 +0200
+
+    Remove trailing whitespaces and do some little reformatting
+    
+    Signed-off-by: Roman Kyrylych <roman at archlinux.org>
+
 commit bb639b33167e13602aacf34bab6032992e7b3d6a
 Author: Aaron Griffin <aaronmgriffin at gmail.com>
 Date:   Wed Feb 20 23:46:57 2008 -0600
Index: core/base/initscripts/PKGBUILD
diff -u core/base/initscripts/PKGBUILD:1.186 core/base/initscripts/PKGBUILD:1.187
--- core/base/initscripts/PKGBUILD:1.186	Thu Feb 21 02:04:08 2008
+++ core/base/initscripts/PKGBUILD	Mon Mar 17 19:03:47 2008
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD,v 1.186 2008/02/21 07:04:08 aaron Exp $
+# $Id: PKGBUILD,v 1.187 2008/03/17 23:03:47 aaron Exp $
 # Maintainer: Thomas Baechler <thomas at archlinux.org>
 # Maintainer: Aaron Griffin <aaron at archlinux.org>
 
 pkgname=initscripts
-pkgver=2008.02
+pkgver=2008.03
 pkgrel=1
 pkgdesc="System initialization/bootup scripts"
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 depends=('glibc' 'bash' 'awk' 'grep' 'coreutils' 'sed' 'udev>=118' 'net-tools' 'ncurses')
 install=initscripts.install
 source=(ftp://ftp.archlinux.org/other/initscripts/${pkgname}-${pkgver}-${pkgrel}.tar.gz)
-md5sums=('55cc2ede13c711b1655a2b6cb8c2c82e')
+md5sums=('e034005a7fc99ae48df4c923d49f04e7')
 
 build() {
   cd ${startdir}/src/${pkgname}-${pkgver}-${pkgrel}/
Index: core/base/initscripts/initscripts.install
diff -u core/base/initscripts/initscripts.install:1.1 core/base/initscripts/initscripts.install:1.2
--- core/base/initscripts/initscripts.install:1.1	Sun May 13 10:01:10 2007
+++ core/base/initscripts/initscripts.install	Mon Mar 17 19:03:47 2008
@@ -1,6 +1,6 @@
 post_upgrade() {
   cat << "EOF"
-------------------------------------------------
+-----------------------------------------------------------
 IMPORTANT NOTICE FOR ENCRYPTION USERS
 
 The "password" column in /etc/crypttab has now
@@ -14,7 +14,13 @@
        from /etc/crypttab to avoid dataloss!
 
 See /etc/crypttab(.pacnew) for more information.
-------------------------------------------------
+-----------------------------------------------------------
+Attention netcfg users: netcfg is no longer included as
+part of the initscripts package.
+Be aware that rc.conf's NET_PROFILES has changed to
+NETWORKS, and that netcfg must be installed separately.
+For more info, see the netcfg man page.
+-----------------------------------------------------------
 EOF
 }
 




More information about the arch-commits mailing list