[Glibc-bsd-commits] r2588 - trunk/freebsd-utils/debian

Aurelien Jarno aurel32 at alioth.debian.org
Sun Jun 14 14:47:11 UTC 2009


Author: aurel32
Date: 2009-06-14 14:47:10 +0000 (Sun, 14 Jun 2009)
New Revision: 2588

Modified:
   trunk/freebsd-utils/debian/changelog
   trunk/freebsd-utils/debian/freebsd-utils.init
Log:
  [ Aurelien Jarno ]
  * freebsd-utils.init: create /sys if it doesn't exists.



Modified: trunk/freebsd-utils/debian/changelog
===================================================================
--- trunk/freebsd-utils/debian/changelog	2009-06-12 14:18:32 UTC (rev 2587)
+++ trunk/freebsd-utils/debian/changelog	2009-06-14 14:47:10 UTC (rev 2588)
@@ -19,8 +19,11 @@
     - Basque. Closes: #529922
     - Finnish. Closes: #530276
 
- -- Aurelien Jarno <aurel32 at debian.org>  Mon, 04 May 2009 12:00:00 +0200
+  [ Aurelien Jarno ]
+  * freebsd-utils.init: create /sys if it doesn't exists.
 
+ -- Aurelien Jarno <aurel32 at debian.org>  Sun, 14 Jun 2009 16:46:32 +0200
+
 freebsd-utils (7.1-5) unstable; urgency=low
 
   [ Guillem Jover ]

Modified: trunk/freebsd-utils/debian/freebsd-utils.init
===================================================================
--- trunk/freebsd-utils/debian/freebsd-utils.init	2009-06-12 14:18:32 UTC (rev 2587)
+++ trunk/freebsd-utils/debian/freebsd-utils.init	2009-06-14 14:47:10 UTC (rev 2588)
@@ -98,6 +98,10 @@
       mount -t linprocfs proc /proc
     fi
     if ! mount | grep -q "on /sys (linsysfs" ; then
+      # Should be done during the installation
+      if [ ! -d /sys ] ; then
+        mkdir /sys
+      fi
       mount -t linsysfs sys /sys
     fi
     if ! mount | grep -q "on /dev/fd (fdescfs" ; then




More information about the Glibc-bsd-commits mailing list