diff options
author | John Crispin <john@openwrt.org> | 2013-07-04 13:30:41 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2013-07-04 13:30:41 +0000 |
commit | dae7f61f31b91a50c4bc7657e4d78282cd11e913 (patch) | |
tree | 32b3a61bfc2126536c642f9b48e8856e37f75a87 /package/system/ubox/Makefile | |
parent | 7b6e3df6abef2070c26604520b8392e0808bac63 (diff) | |
download | upstream-dae7f61f31b91a50c4bc7657e4d78282cd11e913.tar.gz upstream-dae7f61f31b91a50c4bc7657e4d78282cd11e913.tar.bz2 upstream-dae7f61f31b91a50c4bc7657e4d78282cd11e913.zip |
ubox: dont install lsbloader and symlink lsmod
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 37156
Diffstat (limited to 'package/system/ubox/Makefile')
-rw-r--r-- | package/system/ubox/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/system/ubox/Makefile b/package/system/ubox/Makefile index 84f55826a1..3824148f93 100644 --- a/package/system/ubox/Makefile +++ b/package/system/ubox/Makefile @@ -39,11 +39,11 @@ endef define Package/ubox/install $(INSTALL_DIR) $(1)/sbin $(1)/usr/sbin - $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/{mount_root,kmodloader,lsbloader,board} $(1)/sbin/ + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/{mount_root,kmodloader} $(1)/sbin/ ln -s /sbin/mount_root $(1)/sbin/switch2jffs ln -s /sbin/mount_root $(1)/sbin/jffs2reset ln -s /sbin/mount_root $(1)/sbin/jffs2mark - ln -s /sbin/kmodloader $(1)/usr/sbin/lsmod +# ln -s /sbin/kmodloader $(1)/usr/sbin/lsmod ln -s /sbin/kmodloader $(1)/usr/sbin/modinfo endef |