Changeset dedc4cd in mainline
- Timestamp:
- 2019-01-28T16:08:24Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d4f9a2a
- Parents:
- 8d2289c
- git-author:
- Jiri Svoboda <jiri@…> (2018-01-28 08:08:18)
- git-committer:
- Jiri Svoboda <jiri@…> (2019-01-28 16:08:24)
- Location:
- uspace/app/bdsh
- Files:
-
- 4 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/Makefile
r8d2289c rdedc4cd 34 34 35 35 SOURCES = \ 36 cmds/modules/module_aliases.c \ 37 cmds/modules/modules.c \ 36 38 cmds/modules/help/help.c \ 37 39 cmds/modules/mkdir/mkdir.c \ … … 51 53 cmds/modules/kcon/kcon.c \ 52 54 cmds/modules/cmp/cmp.c \ 55 cmds/builtins/builtin_aliases.c \ 56 cmds/builtins/builtins.c \ 53 57 cmds/builtins/batch/batch.c \ 54 58 cmds/builtins/exit/exit.c \ -
uspace/app/bdsh/cmds/builtins/builtin_aliases.h
r8d2289c rdedc4cd 1 /* 2 * Copyright (c) 2008 Tim Post 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 9 * - Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * - Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * - The name of the author may not be used to endorse or promote products 15 * derived from this software without specific prior written permission. 16 * 17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 1 29 #ifndef BUILTIN_ALIASES_H 2 30 #define BUILTIN_ALIASES_H 3 31 4 /* See modules/module_aliases.h for an explanation of this file */ 5 6 char *builtin_aliases[] = { 7 NULL, NULL 8 }; 32 extern char *builtin_aliases[]; 9 33 10 34 #endif -
uspace/app/bdsh/cmds/builtins/builtins.h
r8d2289c rdedc4cd 1 /* 2 * Copyright (c) 2008 Tim Post 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 9 * - Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * - Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * - The name of the author may not be used to endorse or promote products 15 * derived from this software without specific prior written permission. 16 * 17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 1 29 #ifndef BUILTINS_H 2 30 #define BUILTINS_H 3 31 4 #include " config.h"32 #include "../cmds.h" 5 33 6 #include "batch/entry.h" 7 #include "cd/entry.h" 8 #include "exit/entry.h" 9 10 builtin_t builtins[] = { 11 #include "batch/batch_def.inc" 12 #include "cd/cd_def.inc" 13 #include "exit/exit_def.inc" 14 { NULL, NULL, NULL, NULL, 0 } 15 }; 34 extern builtin_t builtins[]; 16 35 17 36 #endif -
uspace/app/bdsh/cmds/mknewcmd
r8d2289c rdedc4cd 213 213 printf " to include your new command.\n" 214 214 [ -n "$CMDALIAS" ] && { 215 printf "\nYou should also modify %ss/%s_aliases. hand " \215 printf "\nYou should also modify %ss/%s_aliases.c and " \ 216 216 "${CMDTYPE}" "${CMDTYPE}" 217 217 printf "add %s as an alias for %s\n" \ -
uspace/app/bdsh/cmds/modules/module_aliases.h
r8d2289c rdedc4cd 30 30 #define MODULE_ALIASES_H 31 31 32 /* 33 * Modules that declare multiple names for themselves but use the 34 * same entry functions are aliases. This array helps to determine if 35 * a module is an alias, as such it can be invoked differently. 36 * format is alias , real_name 37 */ 38 39 /* 40 * So far, this is only used in the help display but could be used to 41 * handle a module differently even prior to reaching its entry code. 42 * For instance, 'exit' could behave differently than 'quit', prior to 43 * the entry point being reached. 44 */ 45 46 const char *mod_aliases[] = { 47 "ren", "mv", 48 "umount", "unmount", 49 NULL, NULL 50 }; 32 extern const char *mod_aliases[]; 51 33 52 34 #endif -
uspace/app/bdsh/cmds/modules/modules.h
r8d2289c rdedc4cd 30 30 #define MODULES_H 31 31 32 /* 33 * Each built in function has two files, one being an entry.h file which 34 * prototypes the run/help entry functions, the other being a .def file 35 * which fills the modules[] array according to the cmd_t structure 36 * defined in cmds.h. 37 * 38 * To add or remove a module, just make a new directory in cmds/modules 39 * for it and copy the 'show' example for basics, then include it here. 40 * (or reverse the process to remove one) 41 * 42 * NOTE: See module_ aliases.h as well, this is where aliases (commands that 43 * share an entry point with others) are indexed 44 */ 32 #include "../cmds.h" 33 #include "modules.h" 45 34 46 #include "config.h" 47 48 /* Prototypes for each module's entry (help/exec) points */ 49 50 #include "help/entry.h" 51 #include "mkdir/entry.h" 52 #include "mkfile/entry.h" 53 #include "rm/entry.h" 54 #include "cat/entry.h" 55 #include "touch/entry.h" 56 #include "ls/entry.h" 57 #include "pwd/entry.h" 58 #include "sleep/entry.h" 59 #include "cp/entry.h" 60 #include "mv/entry.h" 61 #include "mount/entry.h" 62 #include "unmount/entry.h" 63 #include "kcon/entry.h" 64 #include "printf/entry.h" 65 #include "echo/entry.h" 66 #include "cmp/entry.h" 67 68 /* 69 * Each .def function fills the module_t struct with the individual name, entry 70 * point, help entry point, etc. You can use config.h to control what modules 71 * are loaded based on what libraries exist on the system. 72 */ 73 74 module_t modules[] = { 75 #include "help/help_def.inc" 76 #include "mkdir/mkdir_def.inc" 77 #include "mkfile/mkfile_def.inc" 78 #include "rm/rm_def.inc" 79 #include "cat/cat_def.inc" 80 #include "touch/touch_def.inc" 81 #include "ls/ls_def.inc" 82 #include "pwd/pwd_def.inc" 83 #include "sleep/sleep_def.inc" 84 #include "cp/cp_def.inc" 85 #include "mv/mv_def.inc" 86 #include "mount/mount_def.inc" 87 #include "unmount/unmount_def.inc" 88 #include "kcon/kcon_def.inc" 89 #include "printf/printf_def.inc" 90 #include "echo/echo_def.inc" 91 #include "cmp/cmp_def.inc" 92 93 { NULL, NULL, NULL, NULL } 94 }; 35 extern module_t modules[]; 95 36 96 37 #endif
Note:
See TracChangeset
for help on using the changeset viewer.