From: Gustavo Zacarias Date: Thu, 6 May 2010 14:57:14 +0000 (-0300) Subject: install lspci and lsusb to /usr/bin X-Git-Tag: 1_17_0~253 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c7efd6441def53df0200d7cce24e2956ad96aa02;p=platform%2Fupstream%2Fbusybox.git install lspci and lsusb to /usr/bin Both can be run (to some degree) by mere users. Signed-off-by: Gustavo Zacarias Signed-off-by: Bernhard Reutner-Fischer --- diff --git a/include/applets.h b/include/applets.h index dfb20b9..6d7af52 100644 --- a/include/applets.h +++ b/include/applets.h @@ -248,8 +248,8 @@ IF_LS(APPLET_NOEXEC(ls, ls, _BB_DIR_BIN, _BB_SUID_DROP, ls)) IF_LSATTR(APPLET(lsattr, _BB_DIR_BIN, _BB_SUID_DROP)) IF_LSMOD(APPLET(lsmod, _BB_DIR_SBIN, _BB_SUID_DROP)) IF_MODPROBE_SMALL(APPLET_ODDNAME(lsmod, modprobe, _BB_DIR_SBIN, _BB_SUID_DROP, modprobe)) -IF_LSPCI(APPLET(lspci, _BB_DIR_SBIN, _BB_SUID_DROP)) -IF_LSUSB(APPLET(lsusb, _BB_DIR_SBIN, _BB_SUID_DROP)) +IF_LSPCI(APPLET(lspci, _BB_DIR_USR_BIN, _BB_SUID_DROP)) +IF_LSUSB(APPLET(lsusb, _BB_DIR_USR_BIN, _BB_SUID_DROP)) IF_UNLZMA(APPLET_ODDNAME(lzmacat, unlzma, _BB_DIR_USR_BIN, _BB_SUID_DROP, lzmacat)) IF_LZOP(APPLET(lzop, _BB_DIR_BIN, _BB_SUID_DROP)) IF_LZOP(APPLET_ODDNAME(lzopcat, lzop, _BB_DIR_USR_BIN, _BB_SUID_DROP, lzopcat))