9os

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 43dffedaad77f2a4ea7f5a2d42fb1fdb08bb98a0
parent eebe570f70d61348d856fe63930608f7730e837b
Author: Roberto E. Vargas Caballero <roberto.vargas@midokura.com>
Date:   Thu, 17 Nov 2022 12:38:29 +0100

os9/dlang: Add mount command

Diffstat:
Msrc/os9/dlang.c | 15+++++++++++++++
1 file changed, 15 insertions(+), 0 deletions(-)

diff --git a/src/os9/dlang.c b/src/os9/dlang.c @@ -210,6 +210,14 @@ do_bind(const struct cmd *cmd, struct args *args) } static int +do_mount(const struct cmd *cmd, struct args *args) +{ + if (mount(args->argv[1], args->argv[2], args->argv[3]) < 0) + kprint(PREFIX "ERR mount:%e\n"); + return 0; +} + +static int do_x(const struct cmd *cmd, struct args *args) { char *p, *s; @@ -382,6 +390,13 @@ static const struct cmd cmds[] = { .helpmsg = "bind one directory in other: bind from to", }, { + .name = "mount", + .eval = do_mount, + .min = 4, + .max = 4, + .helpmsg = "mount one directory in other: mount from to spec", + }, + { .name = "x", .eval = do_x, .min = 2,