mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH v1 1/2] commands: writef write variable contents to file
@ 2017-09-14 12:29 gp
  2017-09-14 13:54 ` Oleksij Rempel
  0 siblings, 1 reply; 2+ messages in thread
From: gp @ 2017-09-14 12:29 UTC (permalink / raw)
  To: barebox; +Cc: Gerd Pauli

From: Gerd Pauli <gp@high-consulting.de>

Signed-off-by: Gerd Pauli <gp@high-consulting.de>
---
 commands/Kconfig  | 10 ++++++++
 commands/Makefile |  1 +
 commands/writef.c | 68 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 79 insertions(+)
 create mode 100644 commands/writef.c

diff --git a/commands/Kconfig b/commands/Kconfig
index ae2dc4b..89b3103 100644
--- a/commands/Kconfig
+++ b/commands/Kconfig
@@ -1082,6 +1082,16 @@ config CMD_READF
 	  whitespaces are removed, nonvisible characters are stripped. Input is
 	  limited to 1024 characters.
 
+config CMD_WRITEF
+        tristate
+        prompt "writef"
+        help
+          Write variable into file
+
+          Usage: writef VAR FILE
+
+          Writes a line from VARiable into a FILE.
+
 config CMD_SLEEP
 	tristate
 	prompt "sleep"
diff --git a/commands/Makefile b/commands/Makefile
index 37486dc..16c1768 100644
--- a/commands/Makefile
+++ b/commands/Makefile
@@ -103,6 +103,7 @@ obj-$(CONFIG_CMD_BOOT)		+= boot.o
 obj-$(CONFIG_CMD_DEVINFO)	+= devinfo.o
 obj-$(CONFIG_CMD_DRVINFO)	+= drvinfo.o
 obj-$(CONFIG_CMD_READF)		+= readf.o
+obj-$(CONFIG_CMD_WRITEF)	+= writef.o
 obj-$(CONFIG_CMD_MENUTREE)	+= menutree.o
 obj-$(CONFIG_CMD_2048)		+= 2048.o
 obj-$(CONFIG_CMD_REGULATOR)	+= regulator.o
diff --git a/commands/writef.c b/commands/writef.c
new file mode 100644
index 0000000..1cd17b1
--- /dev/null
+++ b/commands/writef.c
@@ -0,0 +1,68 @@
+/*
+ * writef.c - Write Content of Variable to File
+ *
+ * Copyright (c) 2017 Gerd Pauli <gp@high-consulting.de>, HighConsulting GmbH & Co. KG
+ *
+ * See file CREDITS for list of people who contributed to this
+ * project.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2
+ * as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ */
+
+#include <common.h>
+#include <command.h>
+#include <fs.h>
+#include <libfile.h>
+#include <malloc.h>
+#include <linux/stat.h>
+#include <linux/ctype.h>
+#include <environment.h>
+
+static int do_writef(int argc, char *argv[])
+{
+  const char *val;
+  char *variable, *filename;
+  size_t size;
+  void *buf;
+  int ret;
+
+  if (argc != 3)
+    return COMMAND_ERROR_USAGE;
+  
+  variable = argv[1];
+  filename = argv[2];
+  
+  val = getenv(variable);
+  if ( val == NULL )
+    return COMMAND_ERROR;
+  
+  size = strlen(val);
+  size++;
+
+  buf = xmalloc(size+1);
+  sprintf(buf,"%s\n",val);
+
+  ret = write_file(filename, buf, size);
+  free(buf);
+  return ret;
+}
+
+BAREBOX_CMD_HELP_START(writef)
+BAREBOX_CMD_HELP_TEXT("Write Content of VARiable to FILE")
+BAREBOX_CMD_HELP_END
+
+BAREBOX_CMD_START(writef)
+  .cmd		= do_writef,
+  BAREBOX_CMD_DESC("write variable into file")
+  BAREBOX_CMD_OPTS("VAR FILE")
+  BAREBOX_CMD_GROUP(CMD_GRP_SCRIPT)
+  BAREBOX_CMD_HELP(cmd_writef_help)
+BAREBOX_CMD_END
-- 
1.9.1


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH v1 1/2] commands: writef write variable contents to file
  2017-09-14 12:29 [PATCH v1 1/2] commands: writef write variable contents to file gp
@ 2017-09-14 13:54 ` Oleksij Rempel
  0 siblings, 0 replies; 2+ messages in thread
From: Oleksij Rempel @ 2017-09-14 13:54 UTC (permalink / raw)
  To: gp, barebox


[-- Attachment #1.1.1: Type: text/plain, Size: 4025 bytes --]

Hi,

Am 14.09.2017 um 14:29 schrieb gp@high-consulting.de:
> From: Gerd Pauli <gp@high-consulting.de>

please add comment here how it should be used.

> Signed-off-by: Gerd Pauli <gp@high-consulting.de>
> ---
>  commands/Kconfig  | 10 ++++++++
>  commands/Makefile |  1 +
>  commands/writef.c | 68 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
>  3 files changed, 79 insertions(+)
>  create mode 100644 commands/writef.c
> 
> diff --git a/commands/Kconfig b/commands/Kconfig
> index ae2dc4b..89b3103 100644
> --- a/commands/Kconfig
> +++ b/commands/Kconfig
> @@ -1082,6 +1082,16 @@ config CMD_READF
>  	  whitespaces are removed, nonvisible characters are stripped. Input is
>  	  limited to 1024 characters.
>  
> +config CMD_WRITEF
> +        tristate
> +        prompt "writef"

please use tabs instead of spaces.

> +        help
> +          Write variable into file
> +
> +          Usage: writef VAR FILE
> +
> +          Writes a line from VARiable into a FILE.
> +
>  config CMD_SLEEP
>  	tristate
>  	prompt "sleep"
> diff --git a/commands/Makefile b/commands/Makefile
> index 37486dc..16c1768 100644
> --- a/commands/Makefile
> +++ b/commands/Makefile
> @@ -103,6 +103,7 @@ obj-$(CONFIG_CMD_BOOT)		+= boot.o
>  obj-$(CONFIG_CMD_DEVINFO)	+= devinfo.o
>  obj-$(CONFIG_CMD_DRVINFO)	+= drvinfo.o
>  obj-$(CONFIG_CMD_READF)		+= readf.o
> +obj-$(CONFIG_CMD_WRITEF)	+= writef.o
>  obj-$(CONFIG_CMD_MENUTREE)	+= menutree.o
>  obj-$(CONFIG_CMD_2048)		+= 2048.o
>  obj-$(CONFIG_CMD_REGULATOR)	+= regulator.o
> diff --git a/commands/writef.c b/commands/writef.c
> new file mode 100644
> index 0000000..1cd17b1
> --- /dev/null
> +++ b/commands/writef.c
> @@ -0,0 +1,68 @@
> +/*
> + * writef.c - Write Content of Variable to File
> + *
> + * Copyright (c) 2017 Gerd Pauli <gp@high-consulting.de>, HighConsulting GmbH & Co. KG
> + *
> + * See file CREDITS for list of people who contributed to this
> + * project.
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License version 2
> + * as published by the Free Software Foundation.
> + *
> + * This program is distributed in the hope that it will be useful,
> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> + * GNU General Public License for more details.
> + *
> + */
> +
> +#include <common.h>
> +#include <command.h>
> +#include <fs.h>
> +#include <libfile.h>
> +#include <malloc.h>
> +#include <linux/stat.h>
> +#include <linux/ctype.h>
> +#include <environment.h>
> +
> +static int do_writef(int argc, char *argv[])
> +{
> +  const char *val;
> +  char *variable, *filename;
> +  size_t size;
> +  void *buf;
> +  int ret;

same here. tabs, not spaces.
please use linux kernel coding style.
https://www.kernel.org/doc/html/v4.13/process/coding-style.html

you can also use checkpatch.pl script from barebox repository.

for example:
./scripts/checkpatch.pl -f commands/writef.c
or
./scripts/checkpatch.pl your_patch

the same apply to other two patches as well


> +  if (argc != 3)
> +    return COMMAND_ERROR_USAGE;
> +  
> +  variable = argv[1];
> +  filename = argv[2];
> +  
> +  val = getenv(variable);
> +  if ( val == NULL )
> +    return COMMAND_ERROR;
> +  
> +  size = strlen(val);
> +  size++;
> +
> +  buf = xmalloc(size+1);
> +  sprintf(buf,"%s\n",val);
> +
> +  ret = write_file(filename, buf, size);
> +  free(buf);
> +  return ret;
> +}
> +
> +BAREBOX_CMD_HELP_START(writef)
> +BAREBOX_CMD_HELP_TEXT("Write Content of VARiable to FILE")
> +BAREBOX_CMD_HELP_END
> +
> +BAREBOX_CMD_START(writef)
> +  .cmd		= do_writef,
> +  BAREBOX_CMD_DESC("write variable into file")
> +  BAREBOX_CMD_OPTS("VAR FILE")
> +  BAREBOX_CMD_GROUP(CMD_GRP_SCRIPT)
> +  BAREBOX_CMD_HELP(cmd_writef_help)
> +BAREBOX_CMD_END
> 


-- 
Regards,
Oleksij


[-- Attachment #1.2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 213 bytes --]

[-- Attachment #2: Type: text/plain, Size: 149 bytes --]

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-09-14 13:55 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-14 12:29 [PATCH v1 1/2] commands: writef write variable contents to file gp
2017-09-14 13:54 ` Oleksij Rempel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox