X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fuci.git;a=blobdiff_plain;f=cli.c;h=287ef9681d1636efbbbb7c4b1d646a31cd22f999;hp=e05f5d4db06e7c615757a1f321fa326f13e25a97;hb=8dd3eb50025224bd2aa286c0e5c27d230efb7bde;hpb=24c59ffa00d5ba40483a1b0c2bce5e5af2b38a3a diff --git a/cli.c b/cli.c index e05f5d4..287ef96 100644 --- a/cli.c +++ b/cli.c @@ -12,6 +12,7 @@ * GNU General Public License for more details. */ #include +#include #include #include #include "uci.h" @@ -38,9 +39,11 @@ enum { CMD_REVERT, /* package cmds */ CMD_SHOW, + CMD_CHANGES, CMD_EXPORT, CMD_COMMIT, /* other cmds */ + CMD_ADD, CMD_IMPORT, CMD_HELP, }; @@ -55,6 +58,8 @@ static void uci_usage(void) "\tbatch\n" "\texport []\n" "\timport []\n" + "\tchanges []\n" + "\tadd \n" "\tshow [[.
[.