diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-10-23 06:23:36 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-10-23 06:23:36 +0000 |
commit | e9a2e58a69fcc2fb7ab7a106d44c81e2b597cc46 (patch) | |
tree | fb18971863f8497029305b351a435c84d2c01825 /package/udev | |
parent | 60084f42c73ad07a956162d471af2007d86201f6 (diff) |
Add udev initilisation
We have a udev package, but no means to start udev at boot.
This change adds the necessary startup in /init, and adds the required
/sbin/udevsettle to the udev installed files
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9412 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/udev')
-rw-r--r-- | package/udev/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/udev/Makefile b/package/udev/Makefile index 0ab8ec83d..bde7a61e3 100644 --- a/package/udev/Makefile +++ b/package/udev/Makefile @@ -54,6 +54,7 @@ define Package/udev/install install -d -m0775 $(1)/sbin/ $(CP) $(PKG_INSTALL_DIR)/sbin/udevcontrol $(1)/sbin/ $(CP) $(PKG_INSTALL_DIR)/sbin/udevd $(1)/sbin/ + $(CP) $(PKG_INSTALL_DIR)/sbin/udevsettle $(1)/sbin/ install -d -m0775 $(1)/usr/bin/ $(CP) $(PKG_INSTALL_DIR)/usr/bin/udevinfo $(1)/usr/bin/ $(CP) $(PKG_INSTALL_DIR)/usr/bin/udevtest $(1)/usr/bin/ |