Changeset 3233 in MondoRescue for branches/3.2/mindi-busybox/include/applets.h


Ignore:
Timestamp:
Jan 1, 2014, 9:23:14 AM (10 years ago)
Author:
Bruno Cornec
Message:
  • mindi-busybox 1.21.1 is now complete and builds
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/mindi-busybox/include/applets.h

    r2725 r3233  
    1414l     - location to install link to: [/usr]/[s]bin
    1515s     - suid type:
    16         _BB_SUID_REQUIRE: will complain if busybox isn't suid
     16        BB_SUID_REQUIRE: will complain if busybox isn't suid
    1717        and is run by non-root (applet_main() will not be called at all)
    18         _BB_SUID_DROP: will drop suid prior to applet_main()
    19         _BB_SUID_MAYBE: neither of the above
     18        BB_SUID_DROP: will drop suid prior to applet_main()
     19        BB_SUID_MAYBE: neither of the above
     20        (every instance of BB_SUID_REQUIRE and BB_SUID_MAYBE
     21        needs to be justified in comment)
     22        NB: please update FEATURE_SUID help text whenever you add/remove
     23        BB_SUID_REQUIRE or BB_SUID_MAYBE applet.
    2024*/
    2125
     
    5963
    6064#if ENABLE_INSTALL_NO_USR
    61 # define _BB_DIR_USR_BIN _BB_DIR_BIN
    62 # define _BB_DIR_USR_SBIN _BB_DIR_SBIN
     65# define BB_DIR_USR_BIN BB_DIR_BIN
     66# define BB_DIR_USR_SBIN BB_DIR_SBIN
    6367#endif
    6468
    6569
    66 IF_BUNZIP2(APPLET(bunzip2, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    67 IF_BUNZIP2(APPLET_ODDNAME(bzcat, bunzip2, _BB_DIR_USR_BIN, _BB_SUID_DROP, bzcat))
    68 IF_DATE(APPLET(date, _BB_DIR_BIN, _BB_SUID_DROP))
    69 IF_BASE64(APPLET(base64, _BB_DIR_BIN, _BB_SUID_DROP))
    70 IF_PATCH(APPLET(patch, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    71 IF_FIND(APPLET_NOEXEC(find, find, _BB_DIR_USR_BIN, _BB_SUID_DROP, find))
    72 IF_GREP(APPLET(grep, _BB_DIR_BIN, _BB_SUID_DROP))
    73 IF_FEATURE_GREP_EGREP_ALIAS(APPLET_ODDNAME(egrep, grep, _BB_DIR_BIN, _BB_SUID_DROP, egrep))
    74 IF_FEATURE_GREP_FGREP_ALIAS(APPLET_ODDNAME(fgrep, grep, _BB_DIR_BIN, _BB_SUID_DROP, fgrep))
    75 IF_XARGS(APPLET_NOEXEC(xargs, xargs, _BB_DIR_USR_BIN, _BB_SUID_DROP, xargs))
    76 IF_BOOTCHARTD(APPLET(bootchartd, _BB_DIR_SBIN, _BB_SUID_DROP))
    77 IF_HALT(APPLET(halt, _BB_DIR_SBIN, _BB_SUID_DROP))
    78 IF_HALT(APPLET_ODDNAME(poweroff, halt, _BB_DIR_SBIN, _BB_SUID_DROP, poweroff))
    79 IF_HALT(APPLET_ODDNAME(reboot, halt, _BB_DIR_SBIN, _BB_SUID_DROP, reboot))
    80 IF_INIT(APPLET(init, _BB_DIR_SBIN, _BB_SUID_DROP))
    81 IF_FEATURE_INITRD(APPLET_ODDNAME(linuxrc, init, _BB_DIR_ROOT, _BB_SUID_DROP, linuxrc))
    82 IF_MESG(APPLET(mesg, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    83 IF_ADD_SHELL(   APPLET_ODDNAME(add-shell   , add_remove_shell, _BB_DIR_USR_BIN, _BB_SUID_DROP, add_shell   ))
    84 IF_REMOVE_SHELL(APPLET_ODDNAME(remove-shell, add_remove_shell, _BB_DIR_USR_BIN, _BB_SUID_DROP, remove_shell))
    85 IF_CONSPY(APPLET(conspy, _BB_DIR_BIN, _BB_SUID_DROP))
    86 IF_NANDWRITE(APPLET(nandwrite, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    87 IF_NANDWRITE(APPLET_ODDNAME(nanddump, nandwrite, _BB_DIR_USR_SBIN, _BB_SUID_DROP, nanddump))
     70IF_BUNZIP2(APPLET(bunzip2, BB_DIR_USR_BIN, BB_SUID_DROP))
     71IF_BUNZIP2(APPLET_ODDNAME(bzcat, bunzip2, BB_DIR_USR_BIN, BB_SUID_DROP, bzcat))
     72IF_DATE(APPLET(date, BB_DIR_BIN, BB_SUID_DROP))
     73IF_HOSTID(APPLET_NOFORK(hostid, hostid, BB_DIR_USR_BIN, BB_SUID_DROP, hostid))
     74IF_GROUPS(APPLET_NOEXEC(groups, id, BB_DIR_USR_BIN, BB_SUID_DROP, groups))
     75IF_ID(    APPLET_NOEXEC(id,     id, BB_DIR_USR_BIN, BB_SUID_DROP, id    ))
     76IF_TOUCH(APPLET_NOFORK(touch, touch, BB_DIR_BIN, BB_SUID_DROP, touch))
     77IF_BASE64(APPLET(base64, BB_DIR_BIN, BB_SUID_DROP))
     78IF_USERS(APPLET_ODDNAME(users, who, BB_DIR_USR_BIN, BB_SUID_DROP, users))
     79IF_WHO(  APPLET(  who, BB_DIR_USR_BIN, BB_SUID_DROP))
     80IF_PATCH(APPLET(patch, BB_DIR_USR_BIN, BB_SUID_DROP))
     81IF_VI(APPLET(vi, BB_DIR_BIN, BB_SUID_DROP))
     82IF_FIND(APPLET_NOEXEC(find, find, BB_DIR_USR_BIN, BB_SUID_DROP, find))
     83IF_GREP(APPLET(grep, BB_DIR_BIN, BB_SUID_DROP))
     84IF_FEATURE_GREP_EGREP_ALIAS(APPLET_ODDNAME(egrep, grep, BB_DIR_BIN, BB_SUID_DROP, egrep))
     85IF_FEATURE_GREP_FGREP_ALIAS(APPLET_ODDNAME(fgrep, grep, BB_DIR_BIN, BB_SUID_DROP, fgrep))
     86IF_XARGS(APPLET_NOEXEC(xargs, xargs, BB_DIR_USR_BIN, BB_SUID_DROP, xargs))
     87IF_BOOTCHARTD(APPLET(bootchartd, BB_DIR_SBIN, BB_SUID_DROP))
     88IF_HALT(APPLET(halt, BB_DIR_SBIN, BB_SUID_DROP))
     89IF_HALT(APPLET_ODDNAME(poweroff, halt, BB_DIR_SBIN, BB_SUID_DROP, poweroff))
     90IF_HALT(APPLET_ODDNAME(reboot, halt, BB_DIR_SBIN, BB_SUID_DROP, reboot))
     91IF_INIT(APPLET(init, BB_DIR_SBIN, BB_SUID_DROP))
     92IF_FEATURE_INITRD(APPLET_ODDNAME(linuxrc, init, BB_DIR_ROOT, BB_SUID_DROP, linuxrc))
     93IF_MESG(APPLET(mesg, BB_DIR_USR_BIN, BB_SUID_DROP))
     94IF_ADD_SHELL(   APPLET_ODDNAME(add-shell   , add_remove_shell, BB_DIR_USR_SBIN, BB_SUID_DROP, add_shell   ))
     95IF_REMOVE_SHELL(APPLET_ODDNAME(remove-shell, add_remove_shell, BB_DIR_USR_SBIN, BB_SUID_DROP, remove_shell))
     96IF_CONSPY(APPLET(conspy, BB_DIR_BIN, BB_SUID_DROP))
     97IF_NANDWRITE(APPLET(nandwrite, BB_DIR_USR_SBIN, BB_SUID_DROP))
     98IF_NANDWRITE(APPLET_ODDNAME(nanddump, nandwrite, BB_DIR_USR_SBIN, BB_SUID_DROP, nanddump))
    8899IF_UBIATTACH(APPLET_ODDNAME(ubiattach, ubi_attach_detach, _BB_DIR_USR_SBIN, _BB_SUID_DROP, ubiattach))
    89100IF_UBIDETACH(APPLET_ODDNAME(ubidetach, ubi_attach_detach, _BB_DIR_USR_SBIN, _BB_SUID_DROP, ubidetach))
    90 IF_DEPMOD(APPLET(depmod, _BB_DIR_SBIN, _BB_SUID_DROP))
    91 IF_INSMOD(APPLET(insmod, _BB_DIR_SBIN, _BB_SUID_DROP))
    92 IF_LSMOD(APPLET(lsmod, _BB_DIR_SBIN, _BB_SUID_DROP))
    93 IF_MODINFO(APPLET(modinfo, _BB_DIR_SBIN, _BB_SUID_DROP))
    94 IF_MODPROBE(APPLET(modprobe, _BB_DIR_SBIN, _BB_SUID_DROP))
    95 IF_MODPROBE_SMALL(APPLET(modprobe, _BB_DIR_SBIN, _BB_SUID_DROP))
    96 IF_MODPROBE_SMALL(APPLET_ODDNAME(depmod, modprobe, _BB_DIR_SBIN, _BB_SUID_DROP, modprobe))
    97 IF_MODPROBE_SMALL(APPLET_ODDNAME(insmod, modprobe, _BB_DIR_SBIN, _BB_SUID_DROP, modprobe))
    98 IF_MODPROBE_SMALL(APPLET_ODDNAME(lsmod, modprobe, _BB_DIR_SBIN, _BB_SUID_DROP, modprobe))
    99 IF_MODPROBE_SMALL(APPLET_ODDNAME(rmmod, modprobe, _BB_DIR_SBIN, _BB_SUID_DROP, modprobe))
    100 IF_RMMOD(APPLET(rmmod, _BB_DIR_SBIN, _BB_SUID_DROP))
    101 IF_NBDCLIENT(APPLET_ODDNAME(nbd-client, nbdclient, _BB_DIR_USR_SBIN, _BB_SUID_DROP, nbdclient))
    102 IF_IOSTAT(APPLET(iostat, _BB_DIR_BIN, _BB_SUID_DROP))
    103 IF_MPSTAT(APPLET(mpstat, _BB_DIR_BIN, _BB_SUID_DROP))
    104 IF_PMAP(APPLET(pmap, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    105 IF_POWERTOP(APPLET(powertop, _BB_DIR_BIN, _BB_SUID_DROP))
    106 IF_SMEMCAP(APPLET(smemcap, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    107 IF_ASH(APPLET(ash, _BB_DIR_BIN, _BB_SUID_DROP))
    108 IF_FEATURE_SH_IS_ASH(APPLET_ODDNAME(sh, ash, _BB_DIR_BIN, _BB_SUID_DROP, sh))
    109 IF_FEATURE_BASH_IS_ASH(APPLET_ODDNAME(bash, ash, _BB_DIR_BIN, _BB_SUID_DROP, bash))
    110 IF_CTTYHACK(APPLET(cttyhack, _BB_DIR_BIN, _BB_SUID_DROP))
    111 IF_HUSH(APPLET(hush, _BB_DIR_BIN, _BB_SUID_DROP))
    112 IF_MSH(APPLET(msh, _BB_DIR_BIN, _BB_SUID_DROP))
    113 IF_FEATURE_SH_IS_HUSH(APPLET_ODDNAME(sh, hush, _BB_DIR_BIN, _BB_SUID_DROP, sh))
    114 IF_FEATURE_BASH_IS_HUSH(APPLET_ODDNAME(bash, hush, _BB_DIR_BIN, _BB_SUID_DROP, bash))
    115 IF_BLOCKDEV(APPLET(blockdev, _BB_DIR_SBIN, _BB_SUID_DROP))
    116 IF_REV(APPLET(rev, _BB_DIR_BIN, _BB_SUID_DROP))
    117 IF_TEST(APPLET_NOFORK([,  test, _BB_DIR_USR_BIN, _BB_SUID_DROP, test))
    118 IF_TEST(APPLET_NOFORK([[, test, _BB_DIR_USR_BIN, _BB_SUID_DROP, test))
    119 IF_ACPID(APPLET(acpid, _BB_DIR_SBIN, _BB_SUID_DROP))
    120 IF_ADDGROUP(APPLET(addgroup, _BB_DIR_BIN, _BB_SUID_DROP))
    121 IF_ADDUSER(APPLET(adduser, _BB_DIR_BIN, _BB_SUID_DROP))
    122 IF_ADJTIMEX(APPLET(adjtimex, _BB_DIR_SBIN, _BB_SUID_DROP))
    123 IF_AR(APPLET(ar, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    124 IF_ARP(APPLET(arp, _BB_DIR_SBIN, _BB_SUID_DROP))
    125 IF_ARPING(APPLET(arping, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    126 IF_AWK(APPLET_NOEXEC(awk, awk, _BB_DIR_USR_BIN, _BB_SUID_DROP, awk))
    127 IF_BASENAME(APPLET_NOFORK(basename, basename, _BB_DIR_USR_BIN, _BB_SUID_DROP, basename))
    128 IF_BBCONFIG(APPLET(bbconfig, _BB_DIR_BIN, _BB_SUID_DROP))
    129 IF_BEEP(APPLET(beep, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    130 IF_BLKID(APPLET(blkid, _BB_DIR_SBIN, _BB_SUID_DROP))
    131 IF_BRCTL(APPLET(brctl, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    132 IF_BZIP2(APPLET(bzip2, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    133 IF_CAL(APPLET(cal, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    134 IF_CAT(APPLET_NOFORK(cat, cat, _BB_DIR_BIN, _BB_SUID_DROP, cat))
    135 IF_CATV(APPLET(catv, _BB_DIR_BIN, _BB_SUID_DROP))
    136 IF_CHAT(APPLET(chat, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    137 IF_CHATTR(APPLET(chattr, _BB_DIR_BIN, _BB_SUID_DROP))
    138 IF_CHCON(APPLET(chcon, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    139 IF_CHGRP(APPLET_NOEXEC(chgrp, chgrp, _BB_DIR_BIN, _BB_SUID_DROP, chgrp))
    140 IF_CHMOD(APPLET_NOEXEC(chmod, chmod, _BB_DIR_BIN, _BB_SUID_DROP, chmod))
    141 IF_CHOWN(APPLET_NOEXEC(chown, chown, _BB_DIR_BIN, _BB_SUID_DROP, chown))
    142 IF_CHPASSWD(APPLET(chpasswd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    143 IF_CHPST(APPLET(chpst, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    144 IF_CHROOT(APPLET(chroot, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    145 IF_CHRT(APPLET(chrt, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    146 IF_CHVT(APPLET(chvt, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    147 IF_CKSUM(APPLET_NOEXEC(cksum, cksum, _BB_DIR_USR_BIN, _BB_SUID_DROP, cksum))
    148 IF_CLEAR(APPLET(clear, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    149 IF_CMP(APPLET(cmp, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    150 IF_COMM(APPLET(comm, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    151 IF_CP(APPLET_NOEXEC(cp, cp, _BB_DIR_BIN, _BB_SUID_DROP, cp))
    152 IF_CPIO(APPLET(cpio, _BB_DIR_BIN, _BB_SUID_DROP))
    153 IF_CROND(APPLET(crond, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    154 IF_CRONTAB(APPLET(crontab, _BB_DIR_USR_BIN, _BB_SUID_REQUIRE))
    155 IF_CRYPTPW(APPLET(cryptpw, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    156 IF_CUT(APPLET_NOEXEC(cut, cut, _BB_DIR_USR_BIN, _BB_SUID_DROP, cut))
    157 IF_DC(APPLET(dc, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    158 IF_DD(APPLET_NOEXEC(dd, dd, _BB_DIR_BIN, _BB_SUID_DROP, dd))
    159 IF_DEALLOCVT(APPLET(deallocvt, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    160 IF_DELGROUP(APPLET_ODDNAME(delgroup, deluser, _BB_DIR_BIN, _BB_SUID_DROP, delgroup))
    161 IF_DELUSER(APPLET(deluser, _BB_DIR_BIN, _BB_SUID_DROP))
    162 IF_DEVFSD(APPLET(devfsd, _BB_DIR_SBIN, _BB_SUID_DROP))
    163 IF_DEVMEM(APPLET(devmem, _BB_DIR_SBIN, _BB_SUID_DROP))
    164 IF_DF(APPLET(df, _BB_DIR_BIN, _BB_SUID_DROP))
    165 IF_DHCPRELAY(APPLET(dhcprelay, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    166 IF_DIFF(APPLET(diff, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    167 IF_DIRNAME(APPLET_NOFORK(dirname, dirname, _BB_DIR_USR_BIN, _BB_SUID_DROP, dirname))
    168 IF_DMESG(APPLET(dmesg, _BB_DIR_BIN, _BB_SUID_DROP))
    169 IF_DNSD(APPLET(dnsd, _BB_DIR_USR_SBIN, _BB_SUID_REQUIRE))
    170 IF_HOSTNAME(APPLET_ODDNAME(dnsdomainname, hostname, _BB_DIR_BIN, _BB_SUID_DROP, dnsdomainname))
    171 IF_DOS2UNIX(APPLET_NOEXEC(dos2unix, dos2unix, _BB_DIR_USR_BIN, _BB_SUID_DROP, dos2unix))
    172 IF_DPKG(APPLET(dpkg, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    173 IF_DPKG_DEB(APPLET_ODDNAME(dpkg-deb, dpkg_deb, _BB_DIR_USR_BIN, _BB_SUID_DROP, dpkg_deb))
    174 IF_DU(APPLET(du, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    175 IF_DUMPKMAP(APPLET(dumpkmap, _BB_DIR_BIN, _BB_SUID_DROP))
    176 IF_DUMPLEASES(APPLET(dumpleases, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    177 //IF_E2FSCK(APPLET(e2fsck, _BB_DIR_SBIN, _BB_SUID_DROP))
    178 //IF_E2LABEL(APPLET_ODDNAME(e2label, tune2fs, _BB_DIR_SBIN, _BB_SUID_DROP, e2label))
    179 IF_ECHO(APPLET_NOFORK(echo, echo, _BB_DIR_BIN, _BB_SUID_DROP, echo))
    180 IF_ED(APPLET(ed, _BB_DIR_BIN, _BB_SUID_DROP))
    181 IF_EJECT(APPLET(eject, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    182 IF_ENV(APPLET_NOEXEC(env, env, _BB_DIR_USR_BIN, _BB_SUID_DROP, env))
    183 IF_ENVDIR(APPLET_ODDNAME(envdir, chpst, _BB_DIR_USR_BIN, _BB_SUID_DROP, envdir))
    184 IF_ENVUIDGID(APPLET_ODDNAME(envuidgid, chpst, _BB_DIR_USR_BIN, _BB_SUID_DROP, envuidgid))
    185 IF_ETHER_WAKE(APPLET_ODDNAME(ether-wake, ether_wake, _BB_DIR_USR_BIN, _BB_SUID_DROP, ether_wake))
    186 IF_EXPAND(APPLET(expand, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    187 IF_EXPR(APPLET(expr, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    188 IF_FAKEIDENTD(APPLET(fakeidentd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    189 IF_FALSE(APPLET_NOFORK(false, false, _BB_DIR_BIN, _BB_SUID_DROP, false))
    190 IF_FBSET(APPLET(fbset, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    191 IF_FBSPLASH(APPLET(fbsplash, _BB_DIR_SBIN, _BB_SUID_DROP))
    192 IF_FDFLUSH(APPLET_ODDNAME(fdflush, freeramdisk, _BB_DIR_BIN, _BB_SUID_DROP, fdflush))
    193 IF_FDFORMAT(APPLET(fdformat, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    194 IF_FDISK(APPLET(fdisk, _BB_DIR_SBIN, _BB_SUID_DROP))
    195 IF_FGCONSOLE(APPLET(fgconsole, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    196 IF_FINDFS(APPLET(findfs, _BB_DIR_SBIN, _BB_SUID_MAYBE))
    197 IF_FLASH_ERASEALL(APPLET(flash_eraseall, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    198 IF_FLASH_LOCK(APPLET_ODDNAME(flash_lock, flash_lock_unlock, _BB_DIR_USR_SBIN, _BB_SUID_DROP, flash_lock))
    199 IF_FLASH_UNLOCK(APPLET_ODDNAME(flash_unlock, flash_lock_unlock, _BB_DIR_USR_SBIN, _BB_SUID_DROP, flash_unlock))
    200 IF_FLASHCP(APPLET(flashcp, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    201 IF_FLOCK(APPLET(flock, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    202 IF_FOLD(APPLET_NOEXEC(fold, fold, _BB_DIR_USR_BIN, _BB_SUID_DROP, fold))
    203 IF_FREE(APPLET(free, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    204 IF_FREERAMDISK(APPLET(freeramdisk, _BB_DIR_SBIN, _BB_SUID_DROP))
    205 IF_FSCK(APPLET(fsck, _BB_DIR_SBIN, _BB_SUID_DROP))
    206 //IF_E2FSCK(APPLET_ODDNAME(fsck.ext2, e2fsck, _BB_DIR_SBIN, _BB_SUID_DROP, fsck_ext2))
    207 //IF_E2FSCK(APPLET_ODDNAME(fsck.ext3, e2fsck, _BB_DIR_SBIN, _BB_SUID_DROP, fsck_ext3))
    208 IF_FSCK_MINIX(APPLET_ODDNAME(fsck.minix, fsck_minix, _BB_DIR_SBIN, _BB_SUID_DROP, fsck_minix))
    209 IF_FSYNC(APPLET_NOFORK(fsync, fsync, _BB_DIR_BIN, _BB_SUID_DROP, fsync))
    210 IF_FTPD(APPLET(ftpd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    211 IF_FTPGET(APPLET_ODDNAME(ftpget, ftpgetput, _BB_DIR_USR_BIN, _BB_SUID_DROP, ftpget))
    212 IF_FTPPUT(APPLET_ODDNAME(ftpput, ftpgetput, _BB_DIR_USR_BIN, _BB_SUID_DROP, ftpput))
    213 IF_FUSER(APPLET(fuser, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    214 IF_GETENFORCE(APPLET(getenforce, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    215 IF_GETOPT(APPLET(getopt, _BB_DIR_BIN, _BB_SUID_DROP))
    216 IF_GETSEBOOL(APPLET(getsebool, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    217 IF_GETTY(APPLET(getty, _BB_DIR_SBIN, _BB_SUID_DROP))
    218 IF_GUNZIP(APPLET(gunzip, _BB_DIR_BIN, _BB_SUID_DROP))
    219 IF_GZIP(APPLET(gzip, _BB_DIR_BIN, _BB_SUID_DROP))
    220 IF_HD(APPLET_NOEXEC(hd, hexdump, _BB_DIR_USR_BIN, _BB_SUID_DROP, hd))
    221 IF_HDPARM(APPLET(hdparm, _BB_DIR_SBIN, _BB_SUID_DROP))
    222 IF_HEAD(APPLET_NOEXEC(head, head, _BB_DIR_USR_BIN, _BB_SUID_DROP, head))
    223 IF_HEXDUMP(APPLET_NOEXEC(hexdump, hexdump, _BB_DIR_USR_BIN, _BB_SUID_DROP, hexdump))
    224 IF_HOSTID(APPLET_NOFORK(hostid, hostid, _BB_DIR_USR_BIN, _BB_SUID_DROP, hostid))
    225 IF_HOSTNAME(APPLET(hostname, _BB_DIR_BIN, _BB_SUID_DROP))
    226 IF_HTTPD(APPLET(httpd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    227 IF_HWCLOCK(APPLET(hwclock, _BB_DIR_SBIN, _BB_SUID_DROP))
    228 IF_ID(APPLET_NOEXEC(id, id, _BB_DIR_USR_BIN, _BB_SUID_DROP, id))
    229 IF_IFCONFIG(APPLET(ifconfig, _BB_DIR_SBIN, _BB_SUID_DROP))
    230 IF_IFUPDOWN(APPLET_ODDNAME(ifdown, ifupdown, _BB_DIR_SBIN, _BB_SUID_DROP, ifdown))
    231 IF_IFENSLAVE(APPLET(ifenslave, _BB_DIR_SBIN, _BB_SUID_DROP))
    232 IF_IFPLUGD(APPLET(ifplugd, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    233 IF_IFUPDOWN(APPLET_ODDNAME(ifup, ifupdown, _BB_DIR_SBIN, _BB_SUID_DROP, ifup))
    234 IF_INETD(APPLET(inetd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    235 IF_INOTIFYD(APPLET(inotifyd, _BB_DIR_SBIN, _BB_SUID_DROP))
    236 IF_INSTALL(APPLET(install, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    237 IF_IONICE(APPLET(ionice, _BB_DIR_BIN, _BB_SUID_DROP))
     101IF_DEPMOD(APPLET(depmod, BB_DIR_SBIN, BB_SUID_DROP))
     102IF_INSMOD(APPLET(insmod, BB_DIR_SBIN, BB_SUID_DROP))
     103IF_LSMOD(APPLET(lsmod, BB_DIR_SBIN, BB_SUID_DROP))
     104IF_MODINFO(APPLET(modinfo, BB_DIR_SBIN, BB_SUID_DROP))
     105IF_MODPROBE(APPLET(modprobe, BB_DIR_SBIN, BB_SUID_DROP))
     106IF_MODPROBE_SMALL(APPLET(modprobe, BB_DIR_SBIN, BB_SUID_DROP))
     107IF_MODPROBE_SMALL(APPLET_ODDNAME(depmod, modprobe, BB_DIR_SBIN, BB_SUID_DROP, modprobe))
     108IF_MODPROBE_SMALL(APPLET_ODDNAME(insmod, modprobe, BB_DIR_SBIN, BB_SUID_DROP, modprobe))
     109IF_MODPROBE_SMALL(APPLET_ODDNAME(lsmod, modprobe, BB_DIR_SBIN, BB_SUID_DROP, modprobe))
     110IF_MODPROBE_SMALL(APPLET_ODDNAME(rmmod, modprobe, BB_DIR_SBIN, BB_SUID_DROP, modprobe))
     111IF_RMMOD(APPLET(rmmod, BB_DIR_SBIN, BB_SUID_DROP))
     112IF_NBDCLIENT(APPLET_ODDNAME(nbd-client, nbdclient, BB_DIR_USR_SBIN, BB_SUID_DROP, nbdclient))
     113IF_PING(APPLET(ping, BB_DIR_BIN, BB_SUID_MAYBE))
     114IF_PING6(APPLET(ping6, BB_DIR_BIN, BB_SUID_MAYBE))
     115IF_IOSTAT(APPLET(iostat, BB_DIR_BIN, BB_SUID_DROP))
     116IF_MPSTAT(APPLET(mpstat, BB_DIR_BIN, BB_SUID_DROP))
     117IF_NMETER(APPLET(nmeter, BB_DIR_USR_BIN, BB_SUID_DROP))
     118IF_PMAP(APPLET(pmap, BB_DIR_USR_BIN, BB_SUID_DROP))
     119IF_POWERTOP(APPLET(powertop, BB_DIR_USR_SBIN, BB_SUID_DROP))
     120IF_SMEMCAP(APPLET(smemcap, BB_DIR_USR_BIN, BB_SUID_DROP))
     121IF_ASH(APPLET(ash, BB_DIR_BIN, BB_SUID_DROP))
     122IF_FEATURE_SH_IS_ASH(APPLET_ODDNAME(sh, ash, BB_DIR_BIN, BB_SUID_DROP, sh))
     123IF_FEATURE_BASH_IS_ASH(APPLET_ODDNAME(bash, ash, BB_DIR_BIN, BB_SUID_DROP, bash))
     124IF_CTTYHACK(APPLET(cttyhack, BB_DIR_BIN, BB_SUID_DROP))
     125IF_HUSH(APPLET(hush, BB_DIR_BIN, BB_SUID_DROP))
     126IF_MSH(APPLET(msh, BB_DIR_BIN, BB_SUID_DROP))
     127IF_FEATURE_SH_IS_HUSH(APPLET_ODDNAME(sh, hush, BB_DIR_BIN, BB_SUID_DROP, sh))
     128IF_FEATURE_BASH_IS_HUSH(APPLET_ODDNAME(bash, hush, BB_DIR_BIN, BB_SUID_DROP, bash))
     129IF_BLOCKDEV(APPLET(blockdev, BB_DIR_SBIN, BB_SUID_DROP))
     130IF_MDEV(APPLET(mdev, BB_DIR_SBIN, BB_SUID_DROP))
     131IF_REV(APPLET(rev, BB_DIR_BIN, BB_SUID_DROP))
     132IF_TEST(APPLET_NOFORK([,  test, BB_DIR_USR_BIN, BB_SUID_DROP, test))
     133IF_TEST(APPLET_NOFORK([[, test, BB_DIR_USR_BIN, BB_SUID_DROP, test))
     134IF_ACPID(APPLET(acpid, BB_DIR_SBIN, BB_SUID_DROP))
     135IF_ADDGROUP(APPLET(addgroup, BB_DIR_USR_SBIN, BB_SUID_DROP))
     136IF_ADDUSER(APPLET(adduser, BB_DIR_USR_SBIN, BB_SUID_DROP))
     137IF_ADJTIMEX(APPLET(adjtimex, BB_DIR_SBIN, BB_SUID_DROP))
     138IF_AR(APPLET(ar, BB_DIR_USR_BIN, BB_SUID_DROP))
     139IF_ARP(APPLET(arp, BB_DIR_SBIN, BB_SUID_DROP))
     140IF_ARPING(APPLET(arping, BB_DIR_USR_SBIN, BB_SUID_DROP))
     141IF_AWK(APPLET_NOEXEC(awk, awk, BB_DIR_USR_BIN, BB_SUID_DROP, awk))
     142IF_BASENAME(APPLET_NOFORK(basename, basename, BB_DIR_USR_BIN, BB_SUID_DROP, basename))
     143IF_BBCONFIG(APPLET(bbconfig, BB_DIR_BIN, BB_SUID_DROP))
     144IF_BEEP(APPLET(beep, BB_DIR_USR_BIN, BB_SUID_DROP))
     145IF_BLKID(APPLET(blkid, BB_DIR_SBIN, BB_SUID_DROP))
     146IF_BRCTL(APPLET(brctl, BB_DIR_USR_SBIN, BB_SUID_DROP))
     147IF_BZIP2(APPLET(bzip2, BB_DIR_USR_BIN, BB_SUID_DROP))
     148IF_CAL(APPLET(cal, BB_DIR_USR_BIN, BB_SUID_DROP))
     149IF_CAT(APPLET_NOFORK(cat, cat, BB_DIR_BIN, BB_SUID_DROP, cat))
     150IF_CATV(APPLET(catv, BB_DIR_BIN, BB_SUID_DROP))
     151IF_CHAT(APPLET(chat, BB_DIR_USR_SBIN, BB_SUID_DROP))
     152IF_CHATTR(APPLET(chattr, BB_DIR_BIN, BB_SUID_DROP))
     153IF_CHCON(APPLET(chcon, BB_DIR_USR_BIN, BB_SUID_DROP))
     154IF_CHGRP(APPLET_NOEXEC(chgrp, chgrp, BB_DIR_BIN, BB_SUID_DROP, chgrp))
     155IF_CHMOD(APPLET_NOEXEC(chmod, chmod, BB_DIR_BIN, BB_SUID_DROP, chmod))
     156IF_CHOWN(APPLET_NOEXEC(chown, chown, BB_DIR_BIN, BB_SUID_DROP, chown))
     157IF_CHPASSWD(APPLET(chpasswd, BB_DIR_USR_SBIN, BB_SUID_DROP))
     158IF_CHPST(APPLET(chpst, BB_DIR_USR_BIN, BB_SUID_DROP))
     159IF_CHROOT(APPLET(chroot, BB_DIR_USR_SBIN, BB_SUID_DROP))
     160IF_CHRT(APPLET(chrt, BB_DIR_USR_BIN, BB_SUID_DROP))
     161IF_CHVT(APPLET(chvt, BB_DIR_USR_BIN, BB_SUID_DROP))
     162IF_CKSUM(APPLET_NOEXEC(cksum, cksum, BB_DIR_USR_BIN, BB_SUID_DROP, cksum))
     163IF_CLEAR(APPLET(clear, BB_DIR_USR_BIN, BB_SUID_DROP))
     164IF_CMP(APPLET(cmp, BB_DIR_USR_BIN, BB_SUID_DROP))
     165IF_COMM(APPLET(comm, BB_DIR_USR_BIN, BB_SUID_DROP))
     166IF_CP(APPLET_NOEXEC(cp, cp, BB_DIR_BIN, BB_SUID_DROP, cp))
     167IF_CPIO(APPLET(cpio, BB_DIR_BIN, BB_SUID_DROP))
     168IF_CROND(APPLET(crond, BB_DIR_USR_SBIN, BB_SUID_DROP))
     169/* Needs to be run by root or be suid root - needs to change /var/spool/cron* files: */
     170IF_CRONTAB(APPLET(crontab, BB_DIR_USR_BIN, BB_SUID_REQUIRE))
     171IF_CRYPTPW(APPLET(cryptpw, BB_DIR_USR_BIN, BB_SUID_DROP))
     172IF_CUT(APPLET_NOEXEC(cut, cut, BB_DIR_USR_BIN, BB_SUID_DROP, cut))
     173IF_DC(APPLET(dc, BB_DIR_USR_BIN, BB_SUID_DROP))
     174IF_DD(APPLET_NOEXEC(dd, dd, BB_DIR_BIN, BB_SUID_DROP, dd))
     175IF_DEALLOCVT(APPLET(deallocvt, BB_DIR_USR_BIN, BB_SUID_DROP))
     176IF_DELGROUP(APPLET_ODDNAME(delgroup, deluser, BB_DIR_USR_SBIN, BB_SUID_DROP, delgroup))
     177IF_DELUSER(APPLET(deluser, BB_DIR_USR_SBIN, BB_SUID_DROP))
     178IF_DEVFSD(APPLET(devfsd, BB_DIR_SBIN, BB_SUID_DROP))
     179IF_DEVMEM(APPLET(devmem, BB_DIR_SBIN, BB_SUID_DROP))
     180IF_DF(APPLET(df, BB_DIR_BIN, BB_SUID_DROP))
     181IF_DHCPRELAY(APPLET(dhcprelay, BB_DIR_USR_SBIN, BB_SUID_DROP))
     182IF_DIFF(APPLET(diff, BB_DIR_USR_BIN, BB_SUID_DROP))
     183IF_DIRNAME(APPLET_NOFORK(dirname, dirname, BB_DIR_USR_BIN, BB_SUID_DROP, dirname))
     184IF_DMESG(APPLET(dmesg, BB_DIR_BIN, BB_SUID_DROP))
     185IF_DNSD(APPLET(dnsd, BB_DIR_USR_SBIN, BB_SUID_DROP))
     186IF_HOSTNAME(APPLET_ODDNAME(dnsdomainname, hostname, BB_DIR_BIN, BB_SUID_DROP, dnsdomainname))
     187IF_DOS2UNIX(APPLET_NOEXEC(dos2unix, dos2unix, BB_DIR_USR_BIN, BB_SUID_DROP, dos2unix))
     188IF_DPKG(APPLET(dpkg, BB_DIR_USR_BIN, BB_SUID_DROP))
     189IF_DPKG_DEB(APPLET_ODDNAME(dpkg-deb, dpkg_deb, BB_DIR_USR_BIN, BB_SUID_DROP, dpkg_deb))
     190IF_DU(APPLET(du, BB_DIR_USR_BIN, BB_SUID_DROP))
     191IF_DUMPKMAP(APPLET(dumpkmap, BB_DIR_BIN, BB_SUID_DROP))
     192IF_DUMPLEASES(APPLET(dumpleases, BB_DIR_USR_BIN, BB_SUID_DROP))
     193//IF_E2FSCK(APPLET(e2fsck, BB_DIR_SBIN, BB_SUID_DROP))
     194//IF_E2LABEL(APPLET_ODDNAME(e2label, tune2fs, BB_DIR_SBIN, BB_SUID_DROP, e2label))
     195IF_ECHO(APPLET_NOFORK(echo, echo, BB_DIR_BIN, BB_SUID_DROP, echo))
     196IF_ED(APPLET(ed, BB_DIR_BIN, BB_SUID_DROP))
     197IF_EJECT(APPLET(eject, BB_DIR_USR_BIN, BB_SUID_DROP))
     198IF_ENV(APPLET_NOEXEC(env, env, BB_DIR_USR_BIN, BB_SUID_DROP, env))
     199IF_ENVDIR(APPLET_ODDNAME(envdir, chpst, BB_DIR_USR_BIN, BB_SUID_DROP, envdir))
     200IF_ENVUIDGID(APPLET_ODDNAME(envuidgid, chpst, BB_DIR_USR_BIN, BB_SUID_DROP, envuidgid))
     201IF_ETHER_WAKE(APPLET_ODDNAME(ether-wake, ether_wake, BB_DIR_USR_SBIN, BB_SUID_DROP, ether_wake))
     202IF_EXPAND(APPLET(expand, BB_DIR_USR_BIN, BB_SUID_DROP))
     203IF_EXPR(APPLET(expr, BB_DIR_USR_BIN, BB_SUID_DROP))
     204IF_FAKEIDENTD(APPLET(fakeidentd, BB_DIR_USR_SBIN, BB_SUID_DROP))
     205IF_FALSE(APPLET_NOFORK(false, false, BB_DIR_BIN, BB_SUID_DROP, false))
     206IF_FBSET(APPLET(fbset, BB_DIR_USR_SBIN, BB_SUID_DROP))
     207IF_FBSPLASH(APPLET(fbsplash, BB_DIR_SBIN, BB_SUID_DROP))
     208IF_FDFLUSH(APPLET_ODDNAME(fdflush, freeramdisk, BB_DIR_BIN, BB_SUID_DROP, fdflush))
     209IF_FDFORMAT(APPLET(fdformat, BB_DIR_USR_SBIN, BB_SUID_DROP))
     210IF_FDISK(APPLET(fdisk, BB_DIR_SBIN, BB_SUID_DROP))
     211IF_FGCONSOLE(APPLET(fgconsole, BB_DIR_USR_BIN, BB_SUID_DROP))
     212/* Benefits from suid root: better access to /dev/BLOCKDEVs: */
     213IF_FINDFS(APPLET(findfs, BB_DIR_SBIN, BB_SUID_MAYBE))
     214IF_FLASH_ERASEALL(APPLET(flash_eraseall, BB_DIR_USR_SBIN, BB_SUID_DROP))
     215IF_FLASH_LOCK(APPLET_ODDNAME(flash_lock, flash_lock_unlock, BB_DIR_USR_SBIN, BB_SUID_DROP, flash_lock))
     216IF_FLASH_UNLOCK(APPLET_ODDNAME(flash_unlock, flash_lock_unlock, BB_DIR_USR_SBIN, BB_SUID_DROP, flash_unlock))
     217IF_FLASHCP(APPLET(flashcp, BB_DIR_USR_SBIN, BB_SUID_DROP))
     218IF_FLOCK(APPLET(flock, BB_DIR_USR_BIN, BB_SUID_DROP))
     219IF_FOLD(APPLET_NOEXEC(fold, fold, BB_DIR_USR_BIN, BB_SUID_DROP, fold))
     220IF_FREE(APPLET(free, BB_DIR_USR_BIN, BB_SUID_DROP))
     221IF_FREERAMDISK(APPLET(freeramdisk, BB_DIR_SBIN, BB_SUID_DROP))
     222IF_FSCK(APPLET(fsck, BB_DIR_SBIN, BB_SUID_DROP))
     223//IF_E2FSCK(APPLET_ODDNAME(fsck.ext2, e2fsck, BB_DIR_SBIN, BB_SUID_DROP, fsck_ext2))
     224//IF_E2FSCK(APPLET_ODDNAME(fsck.ext3, e2fsck, BB_DIR_SBIN, BB_SUID_DROP, fsck_ext3))
     225IF_FSCK_MINIX(APPLET_ODDNAME(fsck.minix, fsck_minix, BB_DIR_SBIN, BB_SUID_DROP, fsck_minix))
     226IF_FSYNC(APPLET_NOFORK(fsync, fsync, BB_DIR_BIN, BB_SUID_DROP, fsync))
     227IF_FTPD(APPLET(ftpd, BB_DIR_USR_SBIN, BB_SUID_DROP))
     228IF_FTPGET(APPLET_ODDNAME(ftpget, ftpgetput, BB_DIR_USR_BIN, BB_SUID_DROP, ftpget))
     229IF_FTPPUT(APPLET_ODDNAME(ftpput, ftpgetput, BB_DIR_USR_BIN, BB_SUID_DROP, ftpput))
     230IF_FUSER(APPLET(fuser, BB_DIR_USR_BIN, BB_SUID_DROP))
     231IF_GETENFORCE(APPLET(getenforce, BB_DIR_USR_SBIN, BB_SUID_DROP))
     232IF_GETOPT(APPLET(getopt, BB_DIR_BIN, BB_SUID_DROP))
     233IF_GETSEBOOL(APPLET(getsebool, BB_DIR_USR_SBIN, BB_SUID_DROP))
     234IF_GETTY(APPLET(getty, BB_DIR_SBIN, BB_SUID_DROP))
     235IF_GUNZIP(APPLET(gunzip, BB_DIR_BIN, BB_SUID_DROP))
     236IF_GZIP(APPLET(gzip, BB_DIR_BIN, BB_SUID_DROP))
     237IF_HD(APPLET_NOEXEC(hd, hexdump, BB_DIR_USR_BIN, BB_SUID_DROP, hd))
     238IF_HDPARM(APPLET(hdparm, BB_DIR_SBIN, BB_SUID_DROP))
     239IF_HEAD(APPLET_NOEXEC(head, head, BB_DIR_USR_BIN, BB_SUID_DROP, head))
     240IF_HEXDUMP(APPLET_NOEXEC(hexdump, hexdump, BB_DIR_USR_BIN, BB_SUID_DROP, hexdump))
     241IF_HOSTNAME(APPLET(hostname, BB_DIR_BIN, BB_SUID_DROP))
     242IF_HTTPD(APPLET(httpd, BB_DIR_USR_SBIN, BB_SUID_DROP))
     243IF_HWCLOCK(APPLET(hwclock, BB_DIR_SBIN, BB_SUID_DROP))
     244IF_IFCONFIG(APPLET(ifconfig, BB_DIR_SBIN, BB_SUID_DROP))
     245IF_IFUPDOWN(APPLET_ODDNAME(ifdown, ifupdown, BB_DIR_SBIN, BB_SUID_DROP, ifdown))
     246IF_IFENSLAVE(APPLET(ifenslave, BB_DIR_SBIN, BB_SUID_DROP))
     247IF_IFPLUGD(APPLET(ifplugd, BB_DIR_USR_SBIN, BB_SUID_DROP))
     248IF_IFUPDOWN(APPLET_ODDNAME(ifup, ifupdown, BB_DIR_SBIN, BB_SUID_DROP, ifup))
     249IF_INETD(APPLET(inetd, BB_DIR_USR_SBIN, BB_SUID_DROP))
     250IF_INOTIFYD(APPLET(inotifyd, BB_DIR_SBIN, BB_SUID_DROP))
     251IF_INSTALL(APPLET(install, BB_DIR_USR_BIN, BB_SUID_DROP))
     252IF_IONICE(APPLET(ionice, BB_DIR_BIN, BB_SUID_DROP))
    238253#if ENABLE_FEATURE_IP_ADDRESS \
    239254 || ENABLE_FEATURE_IP_ROUTE \
     
    241256 || ENABLE_FEATURE_IP_TUNNEL \
    242257 || ENABLE_FEATURE_IP_RULE
    243 IF_IP(APPLET(ip, _BB_DIR_BIN, _BB_SUID_DROP))
     258IF_IP(APPLET(ip, BB_DIR_SBIN, BB_SUID_DROP))
    244259#endif
    245 IF_IPADDR(APPLET(ipaddr, _BB_DIR_BIN, _BB_SUID_DROP))
    246 IF_IPCALC(APPLET(ipcalc, _BB_DIR_BIN, _BB_SUID_DROP))
    247 IF_IPCRM(APPLET(ipcrm, _BB_DIR_USR_BIN, _BB_SUID_REQUIRE))
    248 IF_IPCS(APPLET(ipcs, _BB_DIR_USR_BIN, _BB_SUID_REQUIRE))
    249 IF_IPLINK(APPLET(iplink, _BB_DIR_BIN, _BB_SUID_DROP))
    250 IF_IPROUTE(APPLET(iproute, _BB_DIR_BIN, _BB_SUID_DROP))
    251 IF_IPRULE(APPLET(iprule, _BB_DIR_BIN, _BB_SUID_DROP))
    252 IF_IPTUNNEL(APPLET(iptunnel, _BB_DIR_BIN, _BB_SUID_DROP))
    253 IF_KBD_MODE(APPLET(kbd_mode, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    254 IF_KILL(APPLET(kill, _BB_DIR_BIN, _BB_SUID_DROP))
    255 IF_KILLALL(APPLET_ODDNAME(killall, kill, _BB_DIR_USR_BIN, _BB_SUID_DROP, killall))
    256 IF_KILLALL5(APPLET_ODDNAME(killall5, kill, _BB_DIR_USR_BIN, _BB_SUID_DROP, killall5))
    257 IF_KLOGD(APPLET(klogd, _BB_DIR_SBIN, _BB_SUID_DROP))
    258 IF_LAST(APPLET(last, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    259 IF_LENGTH(APPLET_NOFORK(length, length, _BB_DIR_USR_BIN, _BB_SUID_DROP, length))
    260 IF_LESS(APPLET(less, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    261 IF_SETARCH(APPLET_ODDNAME(linux32, setarch, _BB_DIR_BIN, _BB_SUID_DROP, linux32))
    262 IF_SETARCH(APPLET_ODDNAME(linux64, setarch, _BB_DIR_BIN, _BB_SUID_DROP, linux64))
    263 IF_LN(APPLET_NOEXEC(ln, ln, _BB_DIR_BIN, _BB_SUID_DROP, ln))
    264 IF_LOAD_POLICY(APPLET(load_policy, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    265 IF_LOADFONT(APPLET(loadfont, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    266 IF_LOADKMAP(APPLET(loadkmap, _BB_DIR_SBIN, _BB_SUID_DROP))
    267 IF_LOGGER(APPLET(logger, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    268 IF_LOGIN(APPLET(login, _BB_DIR_BIN, _BB_SUID_REQUIRE))
    269 IF_LOGNAME(APPLET_NOFORK(logname, logname, _BB_DIR_USR_BIN, _BB_SUID_DROP, logname))
    270 IF_LOGREAD(APPLET(logread, _BB_DIR_SBIN, _BB_SUID_DROP))
    271 IF_LOSETUP(APPLET(losetup, _BB_DIR_SBIN, _BB_SUID_DROP))
    272 IF_LPD(APPLET(lpd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    273 IF_LPQ(APPLET_ODDNAME(lpq, lpqr, _BB_DIR_USR_BIN, _BB_SUID_DROP, lpq))
    274 IF_LPR(APPLET_ODDNAME(lpr, lpqr, _BB_DIR_USR_BIN, _BB_SUID_DROP, lpr))
    275 IF_LS(APPLET_NOEXEC(ls, ls, _BB_DIR_BIN, _BB_SUID_DROP, ls))
    276 IF_LSATTR(APPLET(lsattr, _BB_DIR_BIN, _BB_SUID_DROP))
    277 IF_LSPCI(APPLET(lspci, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    278 IF_LSUSB(APPLET(lsusb, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    279 IF_UNLZMA(APPLET_ODDNAME(lzcat, unlzma, _BB_DIR_USR_BIN, _BB_SUID_DROP, lzcat))
    280 IF_LZMA(APPLET_ODDNAME(lzma, unlzma, _BB_DIR_USR_BIN, _BB_SUID_DROP, lzma))
    281 IF_LZOP(APPLET(lzop, _BB_DIR_BIN, _BB_SUID_DROP))
    282 IF_LZOP(APPLET_ODDNAME(lzopcat, lzop, _BB_DIR_USR_BIN, _BB_SUID_DROP, lzopcat))
    283 IF_MAKEDEVS(APPLET(makedevs, _BB_DIR_SBIN, _BB_SUID_DROP))
    284 IF_MAKEMIME(APPLET(makemime, _BB_DIR_BIN, _BB_SUID_DROP))
    285 IF_MAN(APPLET(man, _BB_DIR_SBIN, _BB_SUID_DROP))
    286 IF_MATCHPATHCON(APPLET(matchpathcon, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    287 IF_MD5SUM(APPLET_NOEXEC(md5sum, md5_sha1_sum, _BB_DIR_USR_BIN, _BB_SUID_DROP, md5sum))
    288 IF_MDEV(APPLET(mdev, _BB_DIR_SBIN, _BB_SUID_DROP))
    289 IF_MICROCOM(APPLET(microcom, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    290 IF_MKDIR(APPLET_NOFORK(mkdir, mkdir, _BB_DIR_BIN, _BB_SUID_DROP, mkdir))
    291 IF_MKFS_VFAT(APPLET_ODDNAME(mkdosfs, mkfs_vfat, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_vfat))
    292 IF_MKFS_EXT2(APPLET_ODDNAME(mke2fs, mkfs_ext2, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_ext2))
    293 IF_MKFIFO(APPLET_NOEXEC(mkfifo, mkfifo, _BB_DIR_USR_BIN, _BB_SUID_DROP, mkfifo))
    294 IF_MKFS_EXT2(APPLET_ODDNAME(mkfs.ext2, mkfs_ext2, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_ext2))
    295 //IF_MKE2FS(APPLET_ODDNAME(mkfs.ext3, mke2fs, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_ext3))
    296 IF_MKFS_MINIX(APPLET_ODDNAME(mkfs.minix, mkfs_minix, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_minix))
    297 IF_MKFS_REISER(APPLET_ODDNAME(mkfs.reiser, mkfs_reiser, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_reiser))
    298 IF_MKFS_VFAT(APPLET_ODDNAME(mkfs.vfat, mkfs_vfat, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_vfat))
    299 IF_MKNOD(APPLET_NOEXEC(mknod, mknod, _BB_DIR_BIN, _BB_SUID_DROP, mknod))
    300 IF_CRYPTPW(APPLET_ODDNAME(mkpasswd, cryptpw, _BB_DIR_USR_BIN, _BB_SUID_DROP, mkpasswd))
    301 IF_MKSWAP(APPLET(mkswap, _BB_DIR_SBIN, _BB_SUID_DROP))
    302 IF_MKTEMP(APPLET(mktemp, _BB_DIR_BIN, _BB_SUID_DROP))
    303 IF_MORE(APPLET(more, _BB_DIR_BIN, _BB_SUID_DROP))
    304 IF_MOUNT(APPLET(mount, _BB_DIR_BIN, IF_DESKTOP(_BB_SUID_MAYBE) IF_NOT_DESKTOP(_BB_SUID_DROP)))
    305 IF_MOUNTPOINT(APPLET(mountpoint, _BB_DIR_BIN, _BB_SUID_DROP))
    306 IF_MT(APPLET(mt, _BB_DIR_BIN, _BB_SUID_DROP))
    307 IF_MV(APPLET(mv, _BB_DIR_BIN, _BB_SUID_DROP))
    308 IF_NAMEIF(APPLET(nameif, _BB_DIR_SBIN, _BB_SUID_DROP))
    309 IF_NC(APPLET(nc, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    310 IF_NETSTAT(APPLET(netstat, _BB_DIR_BIN, _BB_SUID_DROP))
    311 IF_NICE(APPLET(nice, _BB_DIR_BIN, _BB_SUID_DROP))
    312 IF_NMETER(APPLET(nmeter, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    313 IF_NOHUP(APPLET(nohup, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    314 IF_NSLOOKUP(APPLET(nslookup, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    315 IF_NTPD(APPLET(ntpd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    316 IF_OD(APPLET(od, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    317 IF_OPENVT(APPLET(openvt, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    318 //IF_PARSE(APPLET(parse, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    319 IF_PASSWD(APPLET(passwd, _BB_DIR_USR_BIN, _BB_SUID_REQUIRE))
    320 IF_PGREP(APPLET(pgrep, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    321 IF_PIDOF(APPLET(pidof, _BB_DIR_BIN, _BB_SUID_DROP))
    322 IF_PING(APPLET(ping, _BB_DIR_BIN, _BB_SUID_MAYBE))
    323 IF_PING6(APPLET(ping6, _BB_DIR_BIN, _BB_SUID_MAYBE))
    324 IF_PIPE_PROGRESS(APPLET(pipe_progress, _BB_DIR_BIN, _BB_SUID_DROP))
    325 IF_PIVOT_ROOT(APPLET(pivot_root, _BB_DIR_SBIN, _BB_SUID_DROP))
    326 IF_PKILL(APPLET_ODDNAME(pkill, pgrep, _BB_DIR_USR_BIN, _BB_SUID_DROP, pkill))
    327 IF_POPMAILDIR(APPLET(popmaildir, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    328 IF_PRINTENV(APPLET_NOFORK(printenv, printenv, _BB_DIR_BIN, _BB_SUID_DROP, printenv))
    329 IF_PRINTF(APPLET_NOFORK(printf, printf, _BB_DIR_USR_BIN, _BB_SUID_DROP, printf))
    330 IF_PS(APPLET(ps, _BB_DIR_BIN, _BB_SUID_DROP))
    331 IF_PSCAN(APPLET(pscan, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    332 IF_PWD(APPLET_NOFORK(pwd, pwd, _BB_DIR_BIN, _BB_SUID_DROP, pwd))
    333 IF_RAIDAUTORUN(APPLET(raidautorun, _BB_DIR_SBIN, _BB_SUID_DROP))
    334 IF_RDATE(APPLET(rdate, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    335 IF_RDEV(APPLET(rdev, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    336 IF_READAHEAD(APPLET(readahead, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    337 IF_READLINK(APPLET(readlink, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    338 IF_READPROFILE(APPLET(readprofile, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    339 IF_REALPATH(APPLET(realpath, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    340 IF_REFORMIME(APPLET(reformime, _BB_DIR_BIN, _BB_SUID_DROP))
    341 IF_RENICE(APPLET(renice, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    342 IF_RESET(APPLET(reset, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    343 IF_RESIZE(APPLET(resize, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    344 IF_RESTORECON(APPLET_ODDNAME(restorecon, setfiles, _BB_DIR_SBIN, _BB_SUID_DROP, restorecon))
    345 IF_RFKILL(APPLET(rfkill, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    346 IF_RM(APPLET_NOFORK(rm, rm, _BB_DIR_BIN, _BB_SUID_DROP, rm))
    347 IF_RMDIR(APPLET_NOFORK(rmdir, rmdir, _BB_DIR_BIN, _BB_SUID_DROP, rmdir))
    348 IF_ROUTE(APPLET(route, _BB_DIR_SBIN, _BB_SUID_DROP))
    349 IF_RPM(APPLET(rpm, _BB_DIR_BIN, _BB_SUID_DROP))
    350 IF_RPM2CPIO(APPLET(rpm2cpio, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    351 IF_RTCWAKE(APPLET(rtcwake, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    352 IF_RUN_PARTS(APPLET_ODDNAME(run-parts, run_parts, _BB_DIR_BIN, _BB_SUID_DROP, run_parts))
    353 IF_RUNCON(APPLET(runcon, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    354 IF_RUNLEVEL(APPLET(runlevel, _BB_DIR_SBIN, _BB_SUID_DROP))
    355 IF_RUNSV(APPLET(runsv, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    356 IF_RUNSVDIR(APPLET(runsvdir, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    357 IF_RX(APPLET(rx, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    358 IF_SCRIPT(APPLET(script, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    359 IF_SCRIPTREPLAY(APPLET(scriptreplay, _BB_DIR_BIN, _BB_SUID_DROP))
    360 IF_SED(APPLET(sed, _BB_DIR_BIN, _BB_SUID_DROP))
    361 IF_SELINUXENABLED(APPLET(selinuxenabled, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    362 IF_SENDMAIL(APPLET(sendmail, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    363 IF_SEQ(APPLET_NOFORK(seq, seq, _BB_DIR_USR_BIN, _BB_SUID_DROP, seq))
    364 IF_SESTATUS(APPLET(sestatus, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    365 IF_SETARCH(APPLET(setarch, _BB_DIR_BIN, _BB_SUID_DROP))
    366 IF_SETCONSOLE(APPLET(setconsole, _BB_DIR_SBIN, _BB_SUID_DROP))
    367 IF_SETENFORCE(APPLET(setenforce, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    368 IF_SETFILES(APPLET(setfiles, _BB_DIR_SBIN, _BB_SUID_DROP))
    369 IF_SETFONT(APPLET(setfont, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    370 IF_SETKEYCODES(APPLET(setkeycodes, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    371 IF_SETLOGCONS(APPLET(setlogcons, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    372 IF_SETSEBOOL(APPLET(setsebool, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    373 IF_SETSID(APPLET(setsid, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    374 IF_SETUIDGID(APPLET_ODDNAME(setuidgid, chpst, _BB_DIR_USR_BIN, _BB_SUID_DROP, setuidgid))
    375 IF_SHA1SUM(APPLET_NOEXEC(sha1sum, md5_sha1_sum, _BB_DIR_USR_BIN, _BB_SUID_DROP, sha1sum))
    376 IF_SHA256SUM(APPLET_NOEXEC(sha256sum, md5_sha1_sum, _BB_DIR_USR_BIN, _BB_SUID_DROP, sha256sum))
    377 IF_SHA512SUM(APPLET_NOEXEC(sha512sum, md5_sha1_sum, _BB_DIR_USR_BIN, _BB_SUID_DROP, sha512sum))
    378 IF_SHOWKEY(APPLET(showkey, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    379 IF_SLATTACH(APPLET(slattach, _BB_DIR_SBIN, _BB_SUID_DROP))
    380 /* Do not make this applet NOFORK. It breaks ^C-ing of pauses in shells */
    381 IF_SLEEP(APPLET(sleep, _BB_DIR_BIN, _BB_SUID_DROP))
    382 IF_SOFTLIMIT(APPLET_ODDNAME(softlimit, chpst, _BB_DIR_USR_BIN, _BB_SUID_DROP, softlimit))
    383 IF_SORT(APPLET_NOEXEC(sort, sort, _BB_DIR_USR_BIN, _BB_SUID_DROP, sort))
    384 IF_SPLIT(APPLET(split, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    385 IF_START_STOP_DAEMON(APPLET_ODDNAME(start-stop-daemon, start_stop_daemon, _BB_DIR_SBIN, _BB_SUID_DROP, start_stop_daemon))
    386 IF_STAT(APPLET(stat, _BB_DIR_BIN, _BB_SUID_DROP))
    387 IF_STRINGS(APPLET(strings, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    388 IF_STTY(APPLET(stty, _BB_DIR_BIN, _BB_SUID_DROP))
    389 IF_SU(APPLET(su, _BB_DIR_BIN, _BB_SUID_REQUIRE))
    390 IF_SULOGIN(APPLET(sulogin, _BB_DIR_SBIN, _BB_SUID_DROP))
    391 IF_SUM(APPLET(sum, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    392 IF_SV(APPLET(sv, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    393 IF_SVLOGD(APPLET(svlogd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    394 IF_SWAPONOFF(APPLET_ODDNAME(swapoff, swap_on_off, _BB_DIR_SBIN, _BB_SUID_DROP, swapoff))
    395 IF_SWAPONOFF(APPLET_ODDNAME(swapon, swap_on_off, _BB_DIR_SBIN, _BB_SUID_DROP, swapon))
    396 IF_SWITCH_ROOT(APPLET(switch_root, _BB_DIR_SBIN, _BB_SUID_DROP))
    397 IF_SYNC(APPLET_NOFORK(sync, sync, _BB_DIR_BIN, _BB_SUID_DROP, sync))
    398 IF_BB_SYSCTL(APPLET(sysctl, _BB_DIR_SBIN, _BB_SUID_DROP))
    399 IF_SYSLOGD(APPLET(syslogd, _BB_DIR_SBIN, _BB_SUID_DROP))
    400 IF_TAC(APPLET_NOEXEC(tac, tac, _BB_DIR_USR_BIN, _BB_SUID_DROP, tac))
    401 IF_TAIL(APPLET(tail, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    402 IF_TAR(APPLET(tar, _BB_DIR_BIN, _BB_SUID_DROP))
    403 IF_TASKSET(APPLET(taskset, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    404 /* IF_TC(APPLET(tc, _BB_DIR_SBIN, _BB_SUID_DROP)) */
    405 IF_TCPSVD(APPLET_ODDNAME(tcpsvd, tcpudpsvd, _BB_DIR_USR_BIN, _BB_SUID_DROP, tcpsvd))
    406 IF_TEE(APPLET(tee, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    407 IF_TELNET(APPLET(telnet, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    408 IF_TELNETD(APPLET(telnetd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    409 IF_TEST(APPLET_NOFORK(test, test, _BB_DIR_USR_BIN, _BB_SUID_DROP, test))
     260IF_IPADDR(APPLET(ipaddr, BB_DIR_SBIN, BB_SUID_DROP))
     261IF_IPCALC(APPLET(ipcalc, BB_DIR_BIN, BB_SUID_DROP))
     262IF_IPCRM(APPLET(ipcrm, BB_DIR_USR_BIN, BB_SUID_DROP))
     263IF_IPCS(APPLET(ipcs, BB_DIR_USR_BIN, BB_SUID_DROP))
     264IF_IPLINK(APPLET(iplink, BB_DIR_SBIN, BB_SUID_DROP))
     265IF_IPROUTE(APPLET(iproute, BB_DIR_SBIN, BB_SUID_DROP))
     266IF_IPRULE(APPLET(iprule, BB_DIR_SBIN, BB_SUID_DROP))
     267IF_IPTUNNEL(APPLET(iptunnel, BB_DIR_SBIN, BB_SUID_DROP))
     268IF_KBD_MODE(APPLET(kbd_mode, BB_DIR_BIN, BB_SUID_DROP))
     269IF_KILL(APPLET(kill, BB_DIR_BIN, BB_SUID_DROP))
     270IF_KILLALL(APPLET_ODDNAME(killall, kill, BB_DIR_USR_BIN, BB_SUID_DROP, killall))
     271IF_KILLALL5(APPLET_ODDNAME(killall5, kill, BB_DIR_USR_SBIN, BB_SUID_DROP, killall5))
     272IF_KLOGD(APPLET(klogd, BB_DIR_SBIN, BB_SUID_DROP))
     273IF_LAST(APPLET(last, BB_DIR_USR_BIN, BB_SUID_DROP))
     274//IF_LENGTH(APPLET_NOFORK(length, length, BB_DIR_USR_BIN, BB_SUID_DROP, length))
     275IF_LESS(APPLET(less, BB_DIR_USR_BIN, BB_SUID_DROP))
     276IF_SETARCH(APPLET_ODDNAME(linux32, setarch, BB_DIR_BIN, BB_SUID_DROP, linux32))
     277IF_SETARCH(APPLET_ODDNAME(linux64, setarch, BB_DIR_BIN, BB_SUID_DROP, linux64))
     278IF_LN(APPLET_NOEXEC(ln, ln, BB_DIR_BIN, BB_SUID_DROP, ln))
     279IF_LOAD_POLICY(APPLET(load_policy, BB_DIR_USR_SBIN, BB_SUID_DROP))
     280IF_LOADFONT(APPLET(loadfont, BB_DIR_USR_SBIN, BB_SUID_DROP))
     281IF_LOADKMAP(APPLET(loadkmap, BB_DIR_SBIN, BB_SUID_DROP))
     282IF_LOGGER(APPLET(logger, BB_DIR_USR_BIN, BB_SUID_DROP))
     283/* Needs to be run by root or be suid root - needs to change uid and gid: */
     284IF_LOGIN(APPLET(login, BB_DIR_BIN, BB_SUID_REQUIRE))
     285IF_LOGNAME(APPLET_NOFORK(logname, logname, BB_DIR_USR_BIN, BB_SUID_DROP, logname))
     286IF_LOGREAD(APPLET(logread, BB_DIR_SBIN, BB_SUID_DROP))
     287IF_LOSETUP(APPLET(losetup, BB_DIR_SBIN, BB_SUID_DROP))
     288IF_LPD(APPLET(lpd, BB_DIR_USR_SBIN, BB_SUID_DROP))
     289IF_LPQ(APPLET_ODDNAME(lpq, lpqr, BB_DIR_USR_BIN, BB_SUID_DROP, lpq))
     290IF_LPR(APPLET_ODDNAME(lpr, lpqr, BB_DIR_USR_BIN, BB_SUID_DROP, lpr))
     291IF_LS(APPLET_NOEXEC(ls, ls, BB_DIR_BIN, BB_SUID_DROP, ls))
     292IF_LSATTR(APPLET(lsattr, BB_DIR_BIN, BB_SUID_DROP))
     293IF_LSPCI(APPLET(lspci, BB_DIR_USR_BIN, BB_SUID_DROP))
     294IF_LSUSB(APPLET(lsusb, BB_DIR_USR_BIN, BB_SUID_DROP))
     295IF_UNLZMA(APPLET_ODDNAME(lzcat, unlzma, BB_DIR_USR_BIN, BB_SUID_DROP, lzcat))
     296IF_LZMA(APPLET_ODDNAME(lzma, unlzma, BB_DIR_USR_BIN, BB_SUID_DROP, lzma))
     297IF_LZOP(APPLET(lzop, BB_DIR_BIN, BB_SUID_DROP))
     298IF_LZOP(APPLET_ODDNAME(lzopcat, lzop, BB_DIR_USR_BIN, BB_SUID_DROP, lzopcat))
     299IF_MAKEDEVS(APPLET(makedevs, BB_DIR_SBIN, BB_SUID_DROP))
     300IF_MAKEMIME(APPLET(makemime, BB_DIR_BIN, BB_SUID_DROP))
     301IF_MAN(APPLET(man, BB_DIR_SBIN, BB_SUID_DROP))
     302IF_MATCHPATHCON(APPLET(matchpathcon, BB_DIR_USR_SBIN, BB_SUID_DROP))
     303IF_MD5SUM(APPLET_NOEXEC(md5sum, md5_sha1_sum, BB_DIR_USR_BIN, BB_SUID_DROP, md5sum))
     304IF_MICROCOM(APPLET(microcom, BB_DIR_USR_BIN, BB_SUID_DROP))
     305IF_MKDIR(APPLET_NOFORK(mkdir, mkdir, BB_DIR_BIN, BB_SUID_DROP, mkdir))
     306IF_MKFS_VFAT(APPLET_ODDNAME(mkdosfs, mkfs_vfat, BB_DIR_SBIN, BB_SUID_DROP, mkfs_vfat))
     307IF_MKFS_EXT2(APPLET_ODDNAME(mke2fs, mkfs_ext2, BB_DIR_SBIN, BB_SUID_DROP, mkfs_ext2))
     308IF_MKFIFO(APPLET_NOEXEC(mkfifo, mkfifo, BB_DIR_USR_BIN, BB_SUID_DROP, mkfifo))
     309IF_MKFS_EXT2(APPLET_ODDNAME(mkfs.ext2, mkfs_ext2, BB_DIR_SBIN, BB_SUID_DROP, mkfs_ext2))
     310//IF_MKE2FS(APPLET_ODDNAME(mkfs.ext3, mke2fs, BB_DIR_SBIN, BB_SUID_DROP, mkfs_ext3))
     311IF_MKFS_MINIX(APPLET_ODDNAME(mkfs.minix, mkfs_minix, BB_DIR_SBIN, BB_SUID_DROP, mkfs_minix))
     312IF_MKFS_REISER(APPLET_ODDNAME(mkfs.reiser, mkfs_reiser, BB_DIR_SBIN, BB_SUID_DROP, mkfs_reiser))
     313IF_MKFS_VFAT(APPLET_ODDNAME(mkfs.vfat, mkfs_vfat, BB_DIR_SBIN, BB_SUID_DROP, mkfs_vfat))
     314IF_MKNOD(APPLET_NOEXEC(mknod, mknod, BB_DIR_BIN, BB_SUID_DROP, mknod))
     315IF_CRYPTPW(APPLET_ODDNAME(mkpasswd, cryptpw, BB_DIR_USR_BIN, BB_SUID_DROP, mkpasswd))
     316IF_MKSWAP(APPLET(mkswap, BB_DIR_SBIN, BB_SUID_DROP))
     317IF_MKTEMP(APPLET(mktemp, BB_DIR_BIN, BB_SUID_DROP))
     318IF_MORE(APPLET(more, BB_DIR_BIN, BB_SUID_DROP))
     319/* On full-blown systems, requires suid for user mounts.
     320 * But it's not unthinkable to have it available in non-suid flavor on some systems,
     321 * for viewing mount table.
     322 * Therefore we use BB_SUID_MAYBE instead of BB_SUID_REQUIRE: */
     323IF_MOUNT(APPLET(mount, BB_DIR_BIN, IF_DESKTOP(BB_SUID_MAYBE) IF_NOT_DESKTOP(BB_SUID_DROP)))
     324IF_MOUNTPOINT(APPLET(mountpoint, BB_DIR_BIN, BB_SUID_DROP))
     325IF_MT(APPLET(mt, BB_DIR_BIN, BB_SUID_DROP))
     326IF_MV(APPLET(mv, BB_DIR_BIN, BB_SUID_DROP))
     327IF_NAMEIF(APPLET(nameif, BB_DIR_SBIN, BB_SUID_DROP))
     328IF_NC(APPLET(nc, BB_DIR_USR_BIN, BB_SUID_DROP))
     329IF_NETSTAT(APPLET(netstat, BB_DIR_BIN, BB_SUID_DROP))
     330IF_NICE(APPLET(nice, BB_DIR_BIN, BB_SUID_DROP))
     331IF_NOHUP(APPLET(nohup, BB_DIR_USR_BIN, BB_SUID_DROP))
     332IF_NSLOOKUP(APPLET(nslookup, BB_DIR_USR_BIN, BB_SUID_DROP))
     333IF_NTPD(APPLET(ntpd, BB_DIR_USR_SBIN, BB_SUID_DROP))
     334IF_OD(APPLET(od, BB_DIR_USR_BIN, BB_SUID_DROP))
     335IF_OPENVT(APPLET(openvt, BB_DIR_USR_BIN, BB_SUID_DROP))
     336//IF_PARSE(APPLET(parse, BB_DIR_USR_BIN, BB_SUID_DROP))
     337/* Needs to be run by root or be suid root - needs to change /etc/{passwd,shadow}: */
     338IF_PASSWD(APPLET(passwd, BB_DIR_USR_BIN, BB_SUID_REQUIRE))
     339IF_PGREP(APPLET(pgrep, BB_DIR_USR_BIN, BB_SUID_DROP))
     340IF_PIDOF(APPLET(pidof, BB_DIR_BIN, BB_SUID_DROP))
     341IF_PIPE_PROGRESS(APPLET(pipe_progress, BB_DIR_BIN, BB_SUID_DROP))
     342IF_PIVOT_ROOT(APPLET(pivot_root, BB_DIR_SBIN, BB_SUID_DROP))
     343IF_PKILL(APPLET_ODDNAME(pkill, pgrep, BB_DIR_USR_BIN, BB_SUID_DROP, pkill))
     344IF_POPMAILDIR(APPLET(popmaildir, BB_DIR_USR_SBIN, BB_SUID_DROP))
     345IF_PRINTENV(APPLET_NOFORK(printenv, printenv, BB_DIR_BIN, BB_SUID_DROP, printenv))
     346IF_PRINTF(APPLET_NOFORK(printf, printf, BB_DIR_USR_BIN, BB_SUID_DROP, printf))
     347IF_PS(APPLET(ps, BB_DIR_BIN, BB_SUID_DROP))
     348IF_PSCAN(APPLET(pscan, BB_DIR_USR_BIN, BB_SUID_DROP))
     349IF_PWD(APPLET_NOFORK(pwd, pwd, BB_DIR_BIN, BB_SUID_DROP, pwd))
     350IF_RAIDAUTORUN(APPLET(raidautorun, BB_DIR_SBIN, BB_SUID_DROP))
     351IF_RDATE(APPLET(rdate, BB_DIR_USR_SBIN, BB_SUID_DROP))
     352IF_RDEV(APPLET(rdev, BB_DIR_USR_SBIN, BB_SUID_DROP))
     353IF_READAHEAD(APPLET(readahead, BB_DIR_USR_SBIN, BB_SUID_DROP))
     354IF_READLINK(APPLET(readlink, BB_DIR_USR_BIN, BB_SUID_DROP))
     355IF_READPROFILE(APPLET(readprofile, BB_DIR_USR_SBIN, BB_SUID_DROP))
     356IF_REALPATH(APPLET(realpath, BB_DIR_USR_BIN, BB_SUID_DROP))
     357IF_REFORMIME(APPLET(reformime, BB_DIR_BIN, BB_SUID_DROP))
     358IF_RENICE(APPLET(renice, BB_DIR_USR_BIN, BB_SUID_DROP))
     359IF_RESET(APPLET(reset, BB_DIR_USR_BIN, BB_SUID_DROP))
     360IF_RESIZE(APPLET(resize, BB_DIR_USR_BIN, BB_SUID_DROP))
     361IF_RESTORECON(APPLET_ODDNAME(restorecon, setfiles, BB_DIR_SBIN, BB_SUID_DROP, restorecon))
     362IF_RFKILL(APPLET(rfkill, BB_DIR_USR_SBIN, BB_SUID_DROP))
     363IF_RM(APPLET_NOFORK(rm, rm, BB_DIR_BIN, BB_SUID_DROP, rm))
     364IF_RMDIR(APPLET_NOFORK(rmdir, rmdir, BB_DIR_BIN, BB_SUID_DROP, rmdir))
     365IF_ROUTE(APPLET(route, BB_DIR_SBIN, BB_SUID_DROP))
     366IF_RPM(APPLET(rpm, BB_DIR_BIN, BB_SUID_DROP))
     367IF_RPM2CPIO(APPLET(rpm2cpio, BB_DIR_USR_BIN, BB_SUID_DROP))
     368IF_RTCWAKE(APPLET(rtcwake, BB_DIR_USR_SBIN, BB_SUID_DROP))
     369IF_RUN_PARTS(APPLET_ODDNAME(run-parts, run_parts, BB_DIR_BIN, BB_SUID_DROP, run_parts))
     370IF_RUNCON(APPLET(runcon, BB_DIR_USR_BIN, BB_SUID_DROP))
     371IF_RUNLEVEL(APPLET(runlevel, BB_DIR_SBIN, BB_SUID_DROP))
     372IF_RUNSV(APPLET(runsv, BB_DIR_USR_BIN, BB_SUID_DROP))
     373IF_RUNSVDIR(APPLET(runsvdir, BB_DIR_USR_BIN, BB_SUID_DROP))
     374IF_RX(APPLET(rx, BB_DIR_USR_BIN, BB_SUID_DROP))
     375IF_SCRIPT(APPLET(script, BB_DIR_USR_BIN, BB_SUID_DROP))
     376IF_SCRIPTREPLAY(APPLET(scriptreplay, BB_DIR_BIN, BB_SUID_DROP))
     377IF_SED(APPLET(sed, BB_DIR_BIN, BB_SUID_DROP))
     378IF_SELINUXENABLED(APPLET(selinuxenabled, BB_DIR_USR_SBIN, BB_SUID_DROP))
     379IF_SENDMAIL(APPLET(sendmail, BB_DIR_USR_SBIN, BB_SUID_DROP))
     380IF_SEQ(APPLET_NOFORK(seq, seq, BB_DIR_USR_BIN, BB_SUID_DROP, seq))
     381IF_SESTATUS(APPLET(sestatus, BB_DIR_USR_SBIN, BB_SUID_DROP))
     382IF_SETARCH(APPLET(setarch, BB_DIR_BIN, BB_SUID_DROP))
     383IF_SETCONSOLE(APPLET(setconsole, BB_DIR_SBIN, BB_SUID_DROP))
     384IF_SETENFORCE(APPLET(setenforce, BB_DIR_USR_SBIN, BB_SUID_DROP))
     385IF_SETFILES(APPLET(setfiles, BB_DIR_SBIN, BB_SUID_DROP))
     386IF_SETFONT(APPLET(setfont, BB_DIR_USR_SBIN, BB_SUID_DROP))
     387IF_SETKEYCODES(APPLET(setkeycodes, BB_DIR_USR_BIN, BB_SUID_DROP))
     388IF_SETLOGCONS(APPLET(setlogcons, BB_DIR_USR_SBIN, BB_SUID_DROP))
     389IF_SETSEBOOL(APPLET(setsebool, BB_DIR_USR_SBIN, BB_SUID_DROP))
     390IF_SETSID(APPLET(setsid, BB_DIR_USR_BIN, BB_SUID_DROP))
     391IF_SETUIDGID(APPLET_ODDNAME(setuidgid, chpst, BB_DIR_USR_BIN, BB_SUID_DROP, setuidgid))
     392IF_SHA1SUM(APPLET_NOEXEC(sha1sum, md5_sha1_sum, BB_DIR_USR_BIN, BB_SUID_DROP, sha1sum))
     393IF_SHA3SUM(APPLET_NOEXEC(sha3sum, md5_sha1_sum, BB_DIR_USR_BIN, BB_SUID_DROP, sha3sum))
     394IF_SHA256SUM(APPLET_NOEXEC(sha256sum, md5_sha1_sum, BB_DIR_USR_BIN, BB_SUID_DROP, sha256sum))
     395IF_SHA512SUM(APPLET_NOEXEC(sha512sum, md5_sha1_sum, BB_DIR_USR_BIN, BB_SUID_DROP, sha512sum))
     396IF_SHOWKEY(APPLET(showkey, BB_DIR_USR_BIN, BB_SUID_DROP))
     397IF_SLATTACH(APPLET(slattach, BB_DIR_SBIN, BB_SUID_DROP))
     398/* Do not make this applet NOFORK. It breaks ^C-ing of pauses in shells: */
     399IF_SLEEP(APPLET(sleep, BB_DIR_BIN, BB_SUID_DROP))
     400IF_SOFTLIMIT(APPLET_ODDNAME(softlimit, chpst, BB_DIR_USR_BIN, BB_SUID_DROP, softlimit))
     401IF_SORT(APPLET_NOEXEC(sort, sort, BB_DIR_USR_BIN, BB_SUID_DROP, sort))
     402IF_SPLIT(APPLET(split, BB_DIR_USR_BIN, BB_SUID_DROP))
     403IF_START_STOP_DAEMON(APPLET_ODDNAME(start-stop-daemon, start_stop_daemon, BB_DIR_SBIN, BB_SUID_DROP, start_stop_daemon))
     404IF_STAT(APPLET(stat, BB_DIR_BIN, BB_SUID_DROP))
     405IF_STRINGS(APPLET(strings, BB_DIR_USR_BIN, BB_SUID_DROP))
     406IF_STTY(APPLET(stty, BB_DIR_BIN, BB_SUID_DROP))
     407/* Needs to be run by root or be suid root - needs to change uid and gid: */
     408IF_SU(APPLET(su, BB_DIR_BIN, BB_SUID_REQUIRE))
     409IF_SULOGIN(APPLET(sulogin, BB_DIR_SBIN, BB_SUID_DROP))
     410IF_SUM(APPLET(sum, BB_DIR_USR_BIN, BB_SUID_DROP))
     411IF_SV(APPLET(sv, BB_DIR_USR_BIN, BB_SUID_DROP))
     412IF_SVLOGD(APPLET(svlogd, BB_DIR_USR_SBIN, BB_SUID_DROP))
     413IF_SWAPONOFF(APPLET_ODDNAME(swapoff, swap_on_off, BB_DIR_SBIN, BB_SUID_DROP, swapoff))
     414IF_SWAPONOFF(APPLET_ODDNAME(swapon, swap_on_off, BB_DIR_SBIN, BB_SUID_DROP, swapon))
     415IF_SWITCH_ROOT(APPLET(switch_root, BB_DIR_SBIN, BB_SUID_DROP))
     416IF_SYNC(APPLET_NOFORK(sync, sync, BB_DIR_BIN, BB_SUID_DROP, sync))
     417IF_BB_SYSCTL(APPLET(sysctl, BB_DIR_SBIN, BB_SUID_DROP))
     418IF_SYSLOGD(APPLET(syslogd, BB_DIR_SBIN, BB_SUID_DROP))
     419IF_TAC(APPLET_NOEXEC(tac, tac, BB_DIR_USR_BIN, BB_SUID_DROP, tac))
     420IF_TAIL(APPLET(tail, BB_DIR_USR_BIN, BB_SUID_DROP))
     421IF_TAR(APPLET(tar, BB_DIR_BIN, BB_SUID_DROP))
     422IF_TASKSET(APPLET(taskset, BB_DIR_USR_BIN, BB_SUID_DROP))
     423/* IF_TC(APPLET(tc, BB_DIR_SBIN, BB_SUID_DROP)) */
     424IF_TCPSVD(APPLET_ODDNAME(tcpsvd, tcpudpsvd, BB_DIR_USR_BIN, BB_SUID_DROP, tcpsvd))
     425IF_TEE(APPLET(tee, BB_DIR_USR_BIN, BB_SUID_DROP))
     426IF_TELNET(APPLET(telnet, BB_DIR_USR_BIN, BB_SUID_DROP))
     427IF_TELNETD(APPLET(telnetd, BB_DIR_USR_SBIN, BB_SUID_DROP))
     428IF_TEST(APPLET_NOFORK(test, test, BB_DIR_USR_BIN, BB_SUID_DROP, test))
    410429#if ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT
    411 IF_TFTP(APPLET(tftp, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    412 IF_TFTPD(APPLET(tftpd, _BB_DIR_USR_BIN, _BB_SUID_DROP))
     430IF_TFTP(APPLET(tftp, BB_DIR_USR_BIN, BB_SUID_DROP))
     431IF_TFTPD(APPLET(tftpd, BB_DIR_USR_SBIN, BB_SUID_DROP))
    413432#endif
    414 IF_TIME(APPLET(time, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    415 IF_TIMEOUT(APPLET(timeout, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    416 IF_TOP(APPLET(top, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    417 IF_TOUCH(APPLET_NOFORK(touch, touch, _BB_DIR_BIN, _BB_SUID_DROP, touch))
    418 IF_TR(APPLET(tr, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    419 IF_TRACEROUTE(APPLET(traceroute, _BB_DIR_USR_BIN, _BB_SUID_MAYBE))
    420 IF_TRACEROUTE6(APPLET(traceroute6, _BB_DIR_USR_BIN, _BB_SUID_MAYBE))
    421 IF_TRUE(APPLET_NOFORK(true, true, _BB_DIR_BIN, _BB_SUID_DROP, true))
    422 IF_TTY(APPLET(tty, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    423 IF_TTYSIZE(APPLET(ttysize, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    424 IF_TUNCTL(APPLET(tunctl, _BB_DIR_SBIN, _BB_SUID_DROP))
    425 IF_TUNE2FS(APPLET(tune2fs, _BB_DIR_SBIN, _BB_SUID_DROP))
    426 IF_UDHCPC(APPLET(udhcpc, _BB_DIR_SBIN, _BB_SUID_DROP))
    427 IF_UDHCPD(APPLET(udhcpd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
    428 IF_UDPSVD(APPLET_ODDNAME(udpsvd, tcpudpsvd, _BB_DIR_USR_BIN, _BB_SUID_DROP, udpsvd))
    429 IF_UMOUNT(APPLET(umount, _BB_DIR_BIN, _BB_SUID_DROP))
    430 IF_UNAME(APPLET(uname, _BB_DIR_BIN, _BB_SUID_DROP))
    431 IF_UNCOMPRESS(APPLET(uncompress, _BB_DIR_BIN, _BB_SUID_DROP))
    432 IF_UNEXPAND(APPLET_ODDNAME(unexpand, expand, _BB_DIR_USR_BIN, _BB_SUID_DROP, unexpand))
    433 IF_UNIQ(APPLET(uniq, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    434 IF_UNIX2DOS(APPLET_NOEXEC(unix2dos, dos2unix, _BB_DIR_USR_BIN, _BB_SUID_DROP, unix2dos))
    435 IF_UNXZ(APPLET(unxz, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    436 IF_UNLZMA(APPLET(unlzma, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    437 IF_LZOP(APPLET_ODDNAME(unlzop, lzop, _BB_DIR_USR_BIN, _BB_SUID_DROP, unlzop))
    438 IF_UNZIP(APPLET(unzip, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    439 IF_UPTIME(APPLET(uptime, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    440 IF_USLEEP(APPLET_NOFORK(usleep, usleep, _BB_DIR_BIN, _BB_SUID_DROP, usleep))
    441 IF_UUDECODE(APPLET(uudecode, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    442 IF_UUENCODE(APPLET(uuencode, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    443 IF_VCONFIG(APPLET(vconfig, _BB_DIR_SBIN, _BB_SUID_DROP))
    444 IF_VI(APPLET(vi, _BB_DIR_BIN, _BB_SUID_DROP))
    445 IF_VLOCK(APPLET(vlock, _BB_DIR_USR_BIN, _BB_SUID_REQUIRE))
    446 IF_VOLNAME(APPLET(volname, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    447 IF_WALL(APPLET(wall, _BB_DIR_USR_BIN, _BB_SUID_REQUIRE))
    448 IF_WATCH(APPLET(watch, _BB_DIR_BIN, _BB_SUID_DROP))
    449 IF_WATCHDOG(APPLET(watchdog, _BB_DIR_SBIN, _BB_SUID_DROP))
    450 IF_WC(APPLET(wc, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    451 IF_WGET(APPLET(wget, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    452 IF_WHICH(APPLET(which, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    453 IF_WHO(APPLET(who, _BB_DIR_USR_BIN, _BB_SUID_DROP))
    454 IF_WHOAMI(APPLET_NOFORK(whoami, whoami, _BB_DIR_USR_BIN, _BB_SUID_DROP, whoami))
    455 IF_UNXZ(APPLET_ODDNAME(xzcat, unxz, _BB_DIR_USR_BIN, _BB_SUID_DROP, xzcat))
    456 IF_XZ(APPLET_ODDNAME(xz, unxz, _BB_DIR_USR_BIN, _BB_SUID_DROP, xz))
    457 IF_YES(APPLET_NOFORK(yes, yes, _BB_DIR_USR_BIN, _BB_SUID_DROP, yes))
    458 IF_GUNZIP(APPLET_ODDNAME(zcat, gunzip, _BB_DIR_BIN, _BB_SUID_DROP, zcat))
    459 IF_ZCIP(APPLET(zcip, _BB_DIR_SBIN, _BB_SUID_DROP))
     433IF_TIME(APPLET(time, BB_DIR_USR_BIN, BB_SUID_DROP))
     434IF_TIMEOUT(APPLET(timeout, BB_DIR_USR_BIN, BB_SUID_DROP))
     435IF_TOP(APPLET(top, BB_DIR_USR_BIN, BB_SUID_DROP))
     436IF_TR(APPLET(tr, BB_DIR_USR_BIN, BB_SUID_DROP))
     437/* Needs socket(AF_INET, SOCK_RAW, IPPROTO_ICMP), therefore BB_SUID_MAYBE: */
     438IF_TRACEROUTE(APPLET(traceroute, BB_DIR_USR_BIN, BB_SUID_MAYBE))
     439IF_TRACEROUTE6(APPLET(traceroute6, BB_DIR_USR_BIN, BB_SUID_MAYBE))
     440IF_TRUE(APPLET_NOFORK(true, true, BB_DIR_BIN, BB_SUID_DROP, true))
     441IF_TTY(APPLET(tty, BB_DIR_USR_BIN, BB_SUID_DROP))
     442IF_TTYSIZE(APPLET(ttysize, BB_DIR_USR_BIN, BB_SUID_DROP))
     443IF_TUNCTL(APPLET(tunctl, BB_DIR_SBIN, BB_SUID_DROP))
     444IF_TUNE2FS(APPLET(tune2fs, BB_DIR_SBIN, BB_SUID_DROP))
     445IF_UDHCPC(APPLET(udhcpc, BB_DIR_SBIN, BB_SUID_DROP))
     446IF_UDHCPD(APPLET(udhcpd, BB_DIR_USR_SBIN, BB_SUID_DROP))
     447IF_UDPSVD(APPLET_ODDNAME(udpsvd, tcpudpsvd, BB_DIR_USR_BIN, BB_SUID_DROP, udpsvd))
     448IF_UMOUNT(APPLET(umount, BB_DIR_BIN, BB_SUID_DROP))
     449IF_UNAME(APPLET(uname, BB_DIR_BIN, BB_SUID_DROP))
     450IF_UNCOMPRESS(APPLET(uncompress, BB_DIR_BIN, BB_SUID_DROP))
     451IF_UNEXPAND(APPLET_ODDNAME(unexpand, expand, BB_DIR_USR_BIN, BB_SUID_DROP, unexpand))
     452IF_UNIQ(APPLET(uniq, BB_DIR_USR_BIN, BB_SUID_DROP))
     453IF_UNIX2DOS(APPLET_NOEXEC(unix2dos, dos2unix, BB_DIR_USR_BIN, BB_SUID_DROP, unix2dos))
     454IF_UNXZ(APPLET(unxz, BB_DIR_USR_BIN, BB_SUID_DROP))
     455IF_UNLZMA(APPLET(unlzma, BB_DIR_USR_BIN, BB_SUID_DROP))
     456IF_LZOP(APPLET_ODDNAME(unlzop, lzop, BB_DIR_USR_BIN, BB_SUID_DROP, unlzop))
     457IF_UNZIP(APPLET(unzip, BB_DIR_USR_BIN, BB_SUID_DROP))
     458IF_UPTIME(APPLET(uptime, BB_DIR_USR_BIN, BB_SUID_DROP))
     459IF_USLEEP(APPLET_NOFORK(usleep, usleep, BB_DIR_BIN, BB_SUID_DROP, usleep))
     460IF_UUDECODE(APPLET(uudecode, BB_DIR_USR_BIN, BB_SUID_DROP))
     461IF_UUENCODE(APPLET(uuencode, BB_DIR_USR_BIN, BB_SUID_DROP))
     462IF_VCONFIG(APPLET(vconfig, BB_DIR_SBIN, BB_SUID_DROP))
     463/* Needs to be run by root or be suid root - needs to change uid and gid: */
     464IF_VLOCK(APPLET(vlock, BB_DIR_USR_BIN, BB_SUID_REQUIRE))
     465IF_VOLNAME(APPLET(volname, BB_DIR_USR_BIN, BB_SUID_DROP))
     466/* Needs to be run by root or be suid root - needs to write to /dev/TTY: */
     467IF_WALL(APPLET(wall, BB_DIR_USR_BIN, BB_SUID_REQUIRE))
     468IF_WATCH(APPLET(watch, BB_DIR_BIN, BB_SUID_DROP))
     469IF_WATCHDOG(APPLET(watchdog, BB_DIR_SBIN, BB_SUID_DROP))
     470IF_WC(APPLET(wc, BB_DIR_USR_BIN, BB_SUID_DROP))
     471IF_WGET(APPLET(wget, BB_DIR_USR_BIN, BB_SUID_DROP))
     472IF_WHICH(APPLET(which, BB_DIR_USR_BIN, BB_SUID_DROP))
     473IF_WHOAMI(APPLET_NOFORK(whoami, whoami, BB_DIR_USR_BIN, BB_SUID_DROP, whoami))
     474IF_UNXZ(APPLET_ODDNAME(xzcat, unxz, BB_DIR_USR_BIN, BB_SUID_DROP, xzcat))
     475IF_XZ(APPLET_ODDNAME(xz, unxz, BB_DIR_USR_BIN, BB_SUID_DROP, xz))
     476IF_YES(APPLET_NOFORK(yes, yes, BB_DIR_USR_BIN, BB_SUID_DROP, yes))
     477IF_GUNZIP(APPLET_ODDNAME(zcat, gunzip, BB_DIR_BIN, BB_SUID_DROP, zcat))
     478IF_ZCIP(APPLET(zcip, BB_DIR_SBIN, BB_SUID_DROP))
    460479
    461480#if !defined(PROTOTYPES) && !defined(NAME_MAIN_CNAME) && !defined(MAKE_USAGE)
Note: See TracChangeset for help on using the changeset viewer.