summaryrefslogtreecommitdiffstats
path: root/rtemsbsd/rtems/rtems-bsd-shell-route.c
diff options
context:
space:
mode:
Diffstat (limited to 'rtemsbsd/rtems/rtems-bsd-shell-route.c')
-rw-r--r--rtemsbsd/rtems/rtems-bsd-shell-route.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/rtemsbsd/rtems/rtems-bsd-shell-route.c b/rtemsbsd/rtems/rtems-bsd-shell-route.c
new file mode 100644
index 00000000..3fc6dfc4
--- /dev/null
+++ b/rtemsbsd/rtems/rtems-bsd-shell-route.c
@@ -0,0 +1,20 @@
+/*
+ * COPYRIGHT (c) 1989-2012.
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.com/license/LICENSE.
+ */
+
+#include <rtems/netcmds-config.h>
+#include <machine/rtems-bsd-commands.h>
+
+rtems_shell_cmd_t rtems_shell_ROUTE_Command = {
+ "route", /* name */
+ "route [args]", /* usage */
+ "net", /* topic */
+ rtems_bsd_command_route, /* command */
+ NULL, /* alias */
+ NULL /* next */
+};