* [PATCH 1/1] process_escape_sequence: add support to \$?
@ 2013-09-17 7:50 Jean-Christophe PLAGNIOL-VILLARD
2013-09-18 6:54 ` Sascha Hauer
0 siblings, 1 reply; 2+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2013-09-17 7:50 UTC (permalink / raw)
To: barebox
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
---
common/hush.c | 6 ++++++
common/parser.c | 9 +++++++++
include/shell.h | 12 ++++++++++++
lib/process_escape_sequence.c | 7 +++++++
4 files changed, 34 insertions(+)
create mode 100644 include/shell.h
diff --git a/common/hush.c b/common/hush.c
index a3235ba..bf1d9e6 100644
--- a/common/hush.c
+++ b/common/hush.c
@@ -123,6 +123,7 @@
#include <linux/list.h>
#include <binfmt.h>
#include <init.h>
+#include <shell.h>
/*cmd_boot.c*/
extern int do_bootd(int flag, int argc, char *argv[]); /* do_bootd */
@@ -226,6 +227,11 @@ static char console_buffer[CONFIG_CBSIZE]; /* console I/O buffer */
* the first three support $?, $#, and $1 */
static unsigned int last_return_code;
+int shell_get_last_return_code(void)
+{
+ return last_return_code;
+}
+
/* "globals" within this file */
static uchar *ifs;
static char map[256];
diff --git a/common/parser.c b/common/parser.c
index 4d993df..d390fb6 100644
--- a/common/parser.c
+++ b/common/parser.c
@@ -1,6 +1,15 @@
#include <common.h>
#include <command.h>
#include <environment.h>
+#include <shell.h>
+
+/*
+ * not yet supported
+ */
+int shell_get_last_return_code(void)
+{
+ return 0;
+}
static int parse_line (char *line, char *argv[])
{
diff --git a/include/shell.h b/include/shell.h
new file mode 100644
index 0000000..b98cac3
--- /dev/null
+++ b/include/shell.h
@@ -0,0 +1,12 @@
+/*
+ * (C) Copyright 2013 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
+ *
+ * Under GPLv2 only
+ */
+
+#ifndef __SHELL_H__
+#define __SHELL_H__
+
+int shell_get_last_return_code(void);
+
+#endif /* __SHELL_H__ */
diff --git a/lib/process_escape_sequence.c b/lib/process_escape_sequence.c
index be77792..47a7e5c 100644
--- a/lib/process_escape_sequence.c
+++ b/lib/process_escape_sequence.c
@@ -19,6 +19,7 @@
#include <common.h>
#include <fs.h>
#include <libbb.h>
+#include <shell.h>
int process_escape_sequence(const char *source, char *dest, int destlen)
{
@@ -59,6 +60,12 @@ int process_escape_sequence(const char *source, char *dest, int destlen)
case 'w':
i += snprintf(dest + i, destlen - i, "%s", getcwd());
break;
+ case '$':
+ if (*(source + 2) == '?') {
+ i += snprintf(dest + i, destlen - i, "%d", shell_get_last_return_code());
+ source++;
+ break;
+ }
default:
dest[i++] = '\\';
dest[i++] = *(source + 1);
--
1.8.4.rc1
_______________________________________________
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 1/1] process_escape_sequence: add support to \$?
2013-09-17 7:50 [PATCH 1/1] process_escape_sequence: add support to \$? Jean-Christophe PLAGNIOL-VILLARD
@ 2013-09-18 6:54 ` Sascha Hauer
0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2013-09-18 6:54 UTC (permalink / raw)
To: Jean-Christophe PLAGNIOL-VILLARD; +Cc: barebox
On Tue, Sep 17, 2013 at 09:50:04AM +0200, Jean-Christophe PLAGNIOL-VILLARD wrote:
> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> ---
> common/hush.c | 6 ++++++
> common/parser.c | 9 +++++++++
> include/shell.h | 12 ++++++++++++
> lib/process_escape_sequence.c | 7 +++++++
> 4 files changed, 34 insertions(+)
> create mode 100644 include/shell.h
Applied, thanks
Sascha
>
> diff --git a/common/hush.c b/common/hush.c
> index a3235ba..bf1d9e6 100644
> --- a/common/hush.c
> +++ b/common/hush.c
> @@ -123,6 +123,7 @@
> #include <linux/list.h>
> #include <binfmt.h>
> #include <init.h>
> +#include <shell.h>
>
> /*cmd_boot.c*/
> extern int do_bootd(int flag, int argc, char *argv[]); /* do_bootd */
> @@ -226,6 +227,11 @@ static char console_buffer[CONFIG_CBSIZE]; /* console I/O buffer */
> * the first three support $?, $#, and $1 */
> static unsigned int last_return_code;
>
> +int shell_get_last_return_code(void)
> +{
> + return last_return_code;
> +}
> +
> /* "globals" within this file */
> static uchar *ifs;
> static char map[256];
> diff --git a/common/parser.c b/common/parser.c
> index 4d993df..d390fb6 100644
> --- a/common/parser.c
> +++ b/common/parser.c
> @@ -1,6 +1,15 @@
> #include <common.h>
> #include <command.h>
> #include <environment.h>
> +#include <shell.h>
> +
> +/*
> + * not yet supported
> + */
> +int shell_get_last_return_code(void)
> +{
> + return 0;
> +}
>
> static int parse_line (char *line, char *argv[])
> {
> diff --git a/include/shell.h b/include/shell.h
> new file mode 100644
> index 0000000..b98cac3
> --- /dev/null
> +++ b/include/shell.h
> @@ -0,0 +1,12 @@
> +/*
> + * (C) Copyright 2013 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> + *
> + * Under GPLv2 only
> + */
> +
> +#ifndef __SHELL_H__
> +#define __SHELL_H__
> +
> +int shell_get_last_return_code(void);
> +
> +#endif /* __SHELL_H__ */
> diff --git a/lib/process_escape_sequence.c b/lib/process_escape_sequence.c
> index be77792..47a7e5c 100644
> --- a/lib/process_escape_sequence.c
> +++ b/lib/process_escape_sequence.c
> @@ -19,6 +19,7 @@
> #include <common.h>
> #include <fs.h>
> #include <libbb.h>
> +#include <shell.h>
>
> int process_escape_sequence(const char *source, char *dest, int destlen)
> {
> @@ -59,6 +60,12 @@ int process_escape_sequence(const char *source, char *dest, int destlen)
> case 'w':
> i += snprintf(dest + i, destlen - i, "%s", getcwd());
> break;
> + case '$':
> + if (*(source + 2) == '?') {
> + i += snprintf(dest + i, destlen - i, "%d", shell_get_last_return_code());
> + source++;
> + break;
> + }
> default:
> dest[i++] = '\\';
> dest[i++] = *(source + 1);
> --
> 1.8.4.rc1
>
>
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
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:[~2013-09-18 6:54 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-09-17 7:50 [PATCH 1/1] process_escape_sequence: add support to \$? Jean-Christophe PLAGNIOL-VILLARD
2013-09-18 6:54 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox