Changeset a56f4b2 in mainline
- Timestamp:
- 2008-08-28T10:54:43Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7b256b0b
- Parents:
- 88944695
- Location:
- uspace/app/bdsh/cmds
- Files:
-
- 3 edited
- 9 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/builtins/builtins.h
r88944695 ra56f4b2 7 7 8 8 builtin_t builtins[] = { 9 #include "cd/cd .def"9 #include "cd/cd_def.h" 10 10 {NULL, NULL, NULL, NULL} 11 11 }; -
uspace/app/bdsh/cmds/mknewcmd
r88944695 ra56f4b2 91 91 generate_code() 92 92 { 93 echo "Creating ${OUTDIR}/${CMDNAME} .def..."94 cat << EOF > ${OUTDIR}/${CMDNAME} .def93 echo "Creating ${OUTDIR}/${CMDNAME}_def.h ..." 94 cat << EOF > ${OUTDIR}/${CMDNAME}_def.h 95 95 { 96 96 "${CMDNAME}", … … 102 102 103 103 EOF 104 [ -n "${CMDALIAS}" ] && cat << EOF >> ${OUTDIR}/${CMDNAME} .def104 [ -n "${CMDALIAS}" ] && cat << EOF >> ${OUTDIR}/${CMDNAME}_def.h 105 105 { 106 106 "${CMDALIAS}", -
uspace/app/bdsh/cmds/modules/modules.h
r88944695 ra56f4b2 32 32 33 33 module_t modules[] = { 34 #include "help/help .def"35 #include "quit/quit .def"36 #include "mkdir/mkdir .def"37 #include "rm/rm .def"38 #include "cat/cat .def"39 #include "touch/touch .def"40 #include "ls/ls .def"41 #include "pwd/pwd .def"34 #include "help/help_def.h" 35 #include "quit/quit_def.h" 36 #include "mkdir/mkdir_def.h" 37 #include "rm/rm_def.h" 38 #include "cat/cat_def.h" 39 #include "touch/touch_def.h" 40 #include "ls/ls_def.h" 41 #include "pwd/pwd_def.h" 42 42 {NULL, NULL, NULL, NULL} 43 43 };
Note:
See TracChangeset
for help on using the changeset viewer.