aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2012-08-17 09:57:25 +0200
committerHarald Welte <laforge@gnumonks.org>2012-08-17 09:57:25 +0200
commit13fe21939cc735529aa456fe0ccfb755a487c1e9 (patch)
treead88d9edbd5a67d88ec6c39bc8fdd7b5469d6899
parentd13e0cd6dbb535a4c241806a84c2a8ae41405e1b (diff)
... and more VTY help fixes
-rw-r--r--openbsc/src/libbsc/bsc_vty.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/openbsc/src/libbsc/bsc_vty.c b/openbsc/src/libbsc/bsc_vty.c
index 9fbb5dea5..4031cec13 100644
--- a/openbsc/src/libbsc/bsc_vty.c
+++ b/openbsc/src/libbsc/bsc_vty.c
@@ -1666,7 +1666,8 @@ DEFUN(cfg_bts_hsl_oml,
cfg_bts_hsl_oml_cmd,
"oml hsl line E1_LINE",
OML_STR "HSL femto Specific Options\n"
- "Set OML link of this HSL femto BTS\n")
+ "Set OML link of this HSL femto BTS\n"
+ "Virtual E1/T1 line number\n")
{
struct gsm_bts *bts = vty->index;
int linenr = atoi(argv[0]);
@@ -2040,7 +2041,7 @@ DEFUN(cfg_bts_gprs_nsvc_lport, cfg_bts_gprs_nsvc_lport_cmd,
"GPRS NS Local UDP Port\n"
"GPRS NS Local UDP Port\n"
"GPRS NS Local UDP Port\n"
- "GPRS NS Local UDP Port\n")
+ "GPRS NS Local UDP Port Number\n")
{
struct gsm_bts *bts = vty->index;
int idx = atoi(argv[0]);
@@ -2060,7 +2061,8 @@ DEFUN(cfg_bts_gprs_nsvc_rport, cfg_bts_gprs_nsvc_rport_cmd,
GPRS_TEXT NSVC_TEXT
"GPRS NS Remote UDP Port\n"
"GPRS NS Remote UDP Port\n"
- "GPRS NS Remote UDP Port")
+ "GPRS NS Remote UDP Port\n"
+ "GPRS NS Remote UDP Port Number\n")
{
struct gsm_bts *bts = vty->index;
int idx = atoi(argv[0]);
@@ -2414,7 +2416,8 @@ DEFUN(cfg_trx,
DEFUN(cfg_trx_arfcn,
cfg_trx_arfcn_cmd,
"arfcn <0-1023>",
- "Set the ARFCN for this TRX\n")
+ "Set the ARFCN for this TRX\n"
+ "Absolute Radio Frequency Channel Number\n")
{
int arfcn = atoi(argv[0]);
struct gsm_bts_trx *trx = vty->index;