Changeset f3d47c97 in mainline
- Timestamp:
- 2018-03-11T20:38:03Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a35a3d8
- Parents:
- 84239b1
- Location:
- uspace/app/bdsh/cmds
- Files:
-
- 3 edited
- 20 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/builtins/builtins.h
r84239b1 rf3d47c97 9 9 10 10 builtin_t builtins[] = { 11 #include "batch/batch_def. h"12 #include "cd/cd_def. h"13 #include "exit/exit_def. h"11 #include "batch/batch_def.inc" 12 #include "cd/cd_def.inc" 13 #include "exit/exit_def.inc" 14 14 {NULL, NULL, NULL, NULL, 0} 15 15 }; -
uspace/app/bdsh/cmds/mknewcmd
r84239b1 rf3d47c97 90 90 generate_code() 91 91 { 92 echo "Creating ${OUTDIR}/${CMDNAME}_def. h..."93 cat << EOF > ${OUTDIR}/${CMDNAME}_def. h92 echo "Creating ${OUTDIR}/${CMDNAME}_def.inc ..." 93 cat << EOF > ${OUTDIR}/${CMDNAME}_def.inc 94 94 { 95 95 "${CMDNAME}", … … 100 100 101 101 EOF 102 [ -n "${CMDALIAS}" ] && cat << EOF >> ${OUTDIR}/${CMDNAME}_def. h102 [ -n "${CMDALIAS}" ] && cat << EOF >> ${OUTDIR}/${CMDNAME}_def.inc 103 103 { 104 104 "${CMDALIAS}", -
uspace/app/bdsh/cmds/modules/modules.h
r84239b1 rf3d47c97 69 69 70 70 module_t modules[] = { 71 #include "help/help_def. h"72 #include "mkdir/mkdir_def. h"73 #include "mkfile/mkfile_def. h"74 #include "rm/rm_def. h"75 #include "cat/cat_def. h"76 #include "touch/touch_def. h"77 #include "ls/ls_def. h"78 #include "pwd/pwd_def. h"79 #include "sleep/sleep_def. h"80 #include "cp/cp_def. h"81 #include "mv/mv_def. h"82 #include "mount/mount_def. h"83 #include "unmount/unmount_def. h"84 #include "kcon/kcon_def. h"85 #include "printf/printf_def. h"86 #include "echo/echo_def. h"87 #include "cmp/cmp_def. h"71 #include "help/help_def.inc" 72 #include "mkdir/mkdir_def.inc" 73 #include "mkfile/mkfile_def.inc" 74 #include "rm/rm_def.inc" 75 #include "cat/cat_def.inc" 76 #include "touch/touch_def.inc" 77 #include "ls/ls_def.inc" 78 #include "pwd/pwd_def.inc" 79 #include "sleep/sleep_def.inc" 80 #include "cp/cp_def.inc" 81 #include "mv/mv_def.inc" 82 #include "mount/mount_def.inc" 83 #include "unmount/unmount_def.inc" 84 #include "kcon/kcon_def.inc" 85 #include "printf/printf_def.inc" 86 #include "echo/echo_def.inc" 87 #include "cmp/cmp_def.inc" 88 88 89 89 {NULL, NULL, NULL, NULL}
Note:
See TracChangeset
for help on using the changeset viewer.