浏览代码

Duplicate the RTC-setting rule for non-rtc-class kernels. Move the assignment to MODE after the match on ACTION. Add a missing changelog entry (copied from svn log, then reworded).


git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9076 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Bryan Kadzban 16 年之前
父节点
当前提交
17b7b2447e
共有 2 个文件被更改,包括 12 次插入1 次删除
  1. 2 1
      udev-config/55-lfs.rules
  2. 10 0
      udev-config/ChangeLog

+ 2 - 1
udev-config/55-lfs.rules

@@ -3,7 +3,8 @@
 # Core kernel devices
 
 # This causes the system clock to be set as soon as /dev/rtc becomes available.
-SUBSYSTEM=="rtc", MODE="0644", ACTION=="add", RUN+="/etc/rc.d/init.d/setclock start"
+SUBSYSTEM=="rtc", ACTION=="add", MODE="0644", RUN+="/etc/rc.d/init.d/setclock start"
+KERNEL=="rtc", ACTION=="add", MODE="0644", RUN+="/etc/rc.d/init.d/setclock start"
 
 # Comms devices
 

+ 10 - 0
udev-config/ChangeLog

@@ -1,3 +1,13 @@
+2009-09-25	Bryan Kadzban <bryan@linuxfromscratch.org>
+	* 55-lfs.rules: Make the RTC rule (which runs setclock) work for people
+	  that don't use the RTC-class driver -- add another copy of the rule,
+	  using KERNEL=="rtc" instead of SUBSYSTEM=="rtc".  Also move the ACTION
+	  match before the assignment to MODE.
+
+2009-05-23	Bruce Dubbs <bdubbs@linuxfromscratch.org>
+	* 55-lfs.rules: Set the rtc by udev upon boot.  Removed aio device from
+	  udev configuration so defaults are used.
+
 2009-05-16	Bryan Kadzban <bryan@linuxfromscratch.org>
 	* 55-lfs.rules: Adopt udev permissions for random, urandom, kmsg, and
 	  input devices (including psaux, which probably doesn't exist anymore