diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-08-05 02:02:31 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-08-05 02:02:31 +0200 |
commit | ff53bee72300ba97c645404a64c7091991ffa110 (patch) | |
tree | 9d02bf1799875859ab4d4ad3928f08fdbb7162d4 /console-tools | |
parent | fdb92359e47eee8ccd57092928cedccb28ce2f11 (diff) | |
download | busybox-w32-ff53bee72300ba97c645404a64c7091991ffa110.tar.gz busybox-w32-ff53bee72300ba97c645404a64c7091991ffa110.tar.bz2 busybox-w32-ff53bee72300ba97c645404a64c7091991ffa110.zip |
chvt, deallocvt, dumpkmap, fgconsole, loadkmap: make them NOEXEC
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'console-tools')
-rw-r--r-- | console-tools/chvt.c | 2 | ||||
-rw-r--r-- | console-tools/deallocvt.c | 2 | ||||
-rw-r--r-- | console-tools/dumpkmap.c | 2 | ||||
-rw-r--r-- | console-tools/fgconsole.c | 2 | ||||
-rw-r--r-- | console-tools/loadkmap.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/console-tools/chvt.c b/console-tools/chvt.c index d8152de6b..75380a90b 100644 --- a/console-tools/chvt.c +++ b/console-tools/chvt.c | |||
@@ -14,7 +14,7 @@ | |||
14 | //config: This program is used to change to another terminal. | 14 | //config: This program is used to change to another terminal. |
15 | //config: Example: chvt 4 (change to terminal /dev/tty4) | 15 | //config: Example: chvt 4 (change to terminal /dev/tty4) |
16 | 16 | ||
17 | //applet:IF_CHVT(APPLET(chvt, BB_DIR_USR_BIN, BB_SUID_DROP)) | 17 | //applet:IF_CHVT(APPLET_NOEXEC(chvt, chvt, BB_DIR_USR_BIN, BB_SUID_DROP, chvt)) |
18 | 18 | ||
19 | //kbuild:lib-$(CONFIG_CHVT) += chvt.o | 19 | //kbuild:lib-$(CONFIG_CHVT) += chvt.o |
20 | 20 | ||
diff --git a/console-tools/deallocvt.c b/console-tools/deallocvt.c index 6ffb1471e..05731fb78 100644 --- a/console-tools/deallocvt.c +++ b/console-tools/deallocvt.c | |||
@@ -14,7 +14,7 @@ | |||
14 | //config: help | 14 | //config: help |
15 | //config: This program deallocates unused virtual consoles. | 15 | //config: This program deallocates unused virtual consoles. |
16 | 16 | ||
17 | //applet:IF_DEALLOCVT(APPLET(deallocvt, BB_DIR_USR_BIN, BB_SUID_DROP)) | 17 | //applet:IF_DEALLOCVT(APPLET_NOEXEC(deallocvt, deallocvt, BB_DIR_USR_BIN, BB_SUID_DROP, deallocvt)) |
18 | 18 | ||
19 | //kbuild:lib-$(CONFIG_DEALLOCVT) += deallocvt.o | 19 | //kbuild:lib-$(CONFIG_DEALLOCVT) += deallocvt.o |
20 | 20 | ||
diff --git a/console-tools/dumpkmap.c b/console-tools/dumpkmap.c index d4e2cf281..5ffb0cddb 100644 --- a/console-tools/dumpkmap.c +++ b/console-tools/dumpkmap.c | |||
@@ -15,7 +15,7 @@ | |||
15 | //config: This program dumps the kernel's keyboard translation table to | 15 | //config: This program dumps the kernel's keyboard translation table to |
16 | //config: stdout, in binary format. You can then use loadkmap to load it. | 16 | //config: stdout, in binary format. You can then use loadkmap to load it. |
17 | 17 | ||
18 | //applet:IF_DUMPKMAP(APPLET(dumpkmap, BB_DIR_BIN, BB_SUID_DROP)) | 18 | //applet:IF_DUMPKMAP(APPLET_NOEXEC(dumpkmap, dumpkmap, BB_DIR_BIN, BB_SUID_DROP, dumpkmap)) |
19 | 19 | ||
20 | //kbuild:lib-$(CONFIG_DUMPKMAP) += dumpkmap.o | 20 | //kbuild:lib-$(CONFIG_DUMPKMAP) += dumpkmap.o |
21 | 21 | ||
diff --git a/console-tools/fgconsole.c b/console-tools/fgconsole.c index 64311f6ea..a353becd5 100644 --- a/console-tools/fgconsole.c +++ b/console-tools/fgconsole.c | |||
@@ -13,7 +13,7 @@ | |||
13 | //config: help | 13 | //config: help |
14 | //config: This program prints active (foreground) console number. | 14 | //config: This program prints active (foreground) console number. |
15 | 15 | ||
16 | //applet:IF_FGCONSOLE(APPLET(fgconsole, BB_DIR_USR_BIN, BB_SUID_DROP)) | 16 | //applet:IF_FGCONSOLE(APPLET_NOEXEC(fgconsole, fgconsole, BB_DIR_USR_BIN, BB_SUID_DROP, fgconsole)) |
17 | 17 | ||
18 | //kbuild:lib-$(CONFIG_FGCONSOLE) += fgconsole.o | 18 | //kbuild:lib-$(CONFIG_FGCONSOLE) += fgconsole.o |
19 | 19 | ||
diff --git a/console-tools/loadkmap.c b/console-tools/loadkmap.c index 839dc2083..404aba1fb 100644 --- a/console-tools/loadkmap.c +++ b/console-tools/loadkmap.c | |||
@@ -14,7 +14,7 @@ | |||
14 | //config: This program loads a keyboard translation table from | 14 | //config: This program loads a keyboard translation table from |
15 | //config: standard input. | 15 | //config: standard input. |
16 | 16 | ||
17 | //applet:IF_LOADKMAP(APPLET(loadkmap, BB_DIR_SBIN, BB_SUID_DROP)) | 17 | //applet:IF_LOADKMAP(APPLET_NOEXEC(loadkmap, loadkmap, BB_DIR_SBIN, BB_SUID_DROP, loadkmap)) |
18 | 18 | ||
19 | //kbuild:lib-$(CONFIG_LOADKMAP) += loadkmap.o | 19 | //kbuild:lib-$(CONFIG_LOADKMAP) += loadkmap.o |
20 | 20 | ||