mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-05-13 19:49:18 +08:00
45 lines
1009 B
C
45 lines
1009 B
C
/**
|
|
* @file
|
|
*
|
|
* @ingroup demo
|
|
*
|
|
* @brief Shell configuration.
|
|
*/
|
|
|
|
/*
|
|
* Copyright (c) 2010 embedded brains GmbH. All rights reserved.
|
|
*
|
|
* embedded brains GmbH
|
|
* Obere Lagerstr. 30
|
|
* 82178 Puchheim
|
|
* Germany
|
|
* <rtems@embedded-brains.de>
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef DEMO_SHELL_H
|
|
#define DEMO_SHELL_H
|
|
|
|
#include "demo-shell-minimal.h"
|
|
|
|
#define CONFIGURE_SHELL_COMMAND_CP
|
|
#define CONFIGURE_SHELL_COMMAND_PWD
|
|
#define CONFIGURE_SHELL_COMMAND_LS
|
|
#define CONFIGURE_SHELL_COMMAND_CHDIR
|
|
#define CONFIGURE_SHELL_COMMAND_CD
|
|
#define CONFIGURE_SHELL_COMMAND_MKDIR
|
|
#define CONFIGURE_SHELL_COMMAND_RMDIR
|
|
#define CONFIGURE_SHELL_COMMAND_CAT
|
|
#define CONFIGURE_SHELL_COMMAND_MV
|
|
#define CONFIGURE_SHELL_COMMAND_RM
|
|
|
|
#define CONFIGURE_SHELL_COMMAND_MALLOC_INFO
|
|
#define CONFIGURE_SHELL_COMMAND_WKSPACE_INFO
|
|
|
|
#define CONFIGURE_SHELL_COMMAND_RTC
|
|
|
|
#endif /* DEMO_SHELL_H */
|