summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorJuergen Beisert <jbe@isonoe.(none)>2007-10-19 14:56:45 +0200
committerJuergen Beisert <jbe@isonoe.(none)>2007-10-19 14:56:45 +0200
commitafe73cff56de417ce21096476928f53a7515ddec (patch)
treeca75b8b93cc2b4b69fc9923162ea7c80d5ff3d2a /common
parent18690c9c23d424f5a28d24f4369533745c4ddbb3 (diff)
downloadbarebox-afe73cff56de417ce21096476928f53a7515ddec.tar.gz
barebox-afe73cff56de417ce21096476928f53a7515ddec.tar.xz
doc added and some reorganised
Diffstat (limited to 'common')
-rw-r--r--common/date.c5
-rw-r--r--common/env.c68
2 files changed, 71 insertions, 2 deletions
diff --git a/common/date.c b/common/date.c
index c656b9678a..47d96afd3f 100644
--- a/common/date.c
+++ b/common/date.c
@@ -21,8 +21,9 @@
* MA 02111-1307 USA
*/
-/*
- * Date & Time support for Philips PCF8563 RTC
+/**
+ * @file
+ * @brief Date & Time support
*/
#include <common.h>
diff --git a/common/env.c b/common/env.c
index 62134bda33..1b092c94fe 100644
--- a/common/env.c
+++ b/common/env.c
@@ -20,6 +20,11 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
+/**
+ * @file
+ * @brief Environment support
+ */
+
#include <common.h>
#include <command.h>
#include <driver.h>
@@ -28,21 +33,36 @@
#include <errno.h>
#include <init.h>
+/**
+ * Managment of a environment variable
+ */
struct variable_d {
+ /*! List management */
struct variable_d *next;
+ /*! variable length data */
char data[0];
};
#define VARIABLE_D_SIZE(name, value) (sizeof(struct variable_d) + strlen(name) + strlen(value) + 2)
+/**
+ * FIXME
+ */
struct env_context {
+ /*! FIXME */
struct env_context *parent;
+ /*! FIXME */
struct variable_d *local;
+ /*! FIXME */
struct variable_d *global;
};
static struct env_context *context;
+/**
+ * Remove a list of environment variables
+ * @param[inout] v Variable anchor to remove
+ */
static void free_variables(struct variable_d *v)
{
struct variable_d *next;
@@ -54,6 +74,9 @@ static void free_variables(struct variable_d *v)
}
}
+/**
+ * FIXME
+ */
int env_push_context(void)
{
struct env_context *c = xzalloc(sizeof(struct env_context));
@@ -74,6 +97,9 @@ int env_push_context(void)
late_initcall(env_push_context);
+/**
+ * FIXME
+ */
int env_pop_context(void)
{
struct env_context *c = context;
@@ -89,11 +115,21 @@ int env_pop_context(void)
return -EINVAL;
}
+/**
+ * Return variable's value
+ * @param[in] var Variable of interest
+ * @return Value as text
+ */
static char *var_val(struct variable_d *var)
{
return &var->data[strlen(var->data) + 1];
}
+/**
+ * Return variable's name
+ * @param[in] var Variable of interest
+ * @return Name as text
+ */
static char *var_name(struct variable_d *var)
{
return var->data;
@@ -267,6 +303,17 @@ U_BOOT_CMD_START(printenv)
" - print value of environment variable 'name'\n")
U_BOOT_CMD_END
+/**
+ * @page printenv_command printenv
+ *
+ * Usage: printenv [<name>]
+ *
+ * Print environment variables.
+ * If <name> was given, it prints out its content if the environment variable
+ * <name> exists.
+ * Without the <name> argument all current environment variables are printed.
+ */
+
#ifdef CONFIG_SIMPLE_PARSER
static int do_setenv ( cmd_tbl_t *cmdtp, int argc, char *argv[])
{
@@ -291,6 +338,19 @@ U_BOOT_CMD_START(setenv)
" - delete environment variable 'name'\n")
U_BOOT_CMD_END
+/**
+ * @page setenv_command setenv
+ *
+ * Usage: setenv <name> [<value>]
+ *
+ * Set environment variable <name> to <value ...>
+ * If no <value> was given, the variable <name> will be removed.
+ *
+ * This command can be replaced by using the simpler form:
+ *
+ * <name> = <value>
+ */
+
#endif
static int do_export ( cmd_tbl_t *cmdtp, int argc, char *argv[])
@@ -329,3 +389,11 @@ U_BOOT_CMD_START(export)
U_BOOT_CMD_HELP(cmd_export_help)
U_BOOT_CMD_END
+/**
+ * @page export_command export
+ *
+ * Usage: export <var>[=value]...
+ *
+ * Export an environment variable to subsequently executed scripts
+ */
+