Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/cmds/modules/modules.h

    rdedc4cd r7c3fb9b  
    3030#define MODULES_H
    3131
    32 #include "../cmds.h"
    33 #include "modules.h"
     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 */
    3445
    35 extern module_t modules[];
     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
     74module_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};
    3695
    3796#endif
Note: See TracChangeset for help on using the changeset viewer.