* [PATCH 1/5] Documentation: booting linux: improve wording
@ 2016-02-09 16:01 Robert Schwebel
2016-02-09 16:01 ` [PATCH 2/5] Documentation: m25p80: include in documentation Robert Schwebel
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Robert Schwebel @ 2016-02-09 16:01 UTC (permalink / raw)
To: barebox
'bootm' is the lowlevel boot command, in contrast to 'boot', which is
more highlevel.
Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
---
Documentation/user/booting-linux.rst | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Documentation/user/booting-linux.rst b/Documentation/user/booting-linux.rst
index 5b021f0..98628fa 100644
--- a/Documentation/user/booting-linux.rst
+++ b/Documentation/user/booting-linux.rst
@@ -6,7 +6,7 @@ Booting Linux
Introduction
------------
-The basic boot command in barebox is :ref:`command_bootm`. This command
+The lowlevel boot command in barebox is :ref:`command_bootm`. This command
can be used directly, but there is also a :ref:`command_boot` command
which offers additional features like a boot sequence which tries to
boot different entries until one succeeds.
@@ -14,7 +14,7 @@ boot different entries until one succeeds.
The bootm command
-----------------
-The :ref:`command_bootm` command is the basic boot command. Depending on the
+The :ref:`command_bootm` command is the lowlevel boot command. Depending on the
architecture the bootm command handles different image types. On ARM the
following images are supported:
--
2.7.0.rc3
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 2/5] Documentation: m25p80: include in documentation
2016-02-09 16:01 [PATCH 1/5] Documentation: booting linux: improve wording Robert Schwebel
@ 2016-02-09 16:01 ` Robert Schwebel
2016-02-09 16:01 ` [PATCH 3/5] Documentation: user manual: include documentation for remote-control Robert Schwebel
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Robert Schwebel @ 2016-02-09 16:01 UTC (permalink / raw)
To: barebox
Fix this warning:
checking consistency... [...]Documentation/devicetree/bindings/mtd/m25p80.rst:: WARNING: document isn't included in any toctree
by including the document.
Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
---
Documentation/devicetree/index.rst | 1 +
1 file changed, 1 insertion(+)
diff --git a/Documentation/devicetree/index.rst b/Documentation/devicetree/index.rst
index abb9088..c5992c0 100644
--- a/Documentation/devicetree/index.rst
+++ b/Documentation/devicetree/index.rst
@@ -11,3 +11,4 @@ Contents:
bindings/barebox/*
bindings/leds/*
bindings/misc/*
+ bindings/mtd/*
--
2.7.0.rc3
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 3/5] Documentation: user manual: include documentation for remote-control
2016-02-09 16:01 [PATCH 1/5] Documentation: booting linux: improve wording Robert Schwebel
2016-02-09 16:01 ` [PATCH 2/5] Documentation: m25p80: include in documentation Robert Schwebel
@ 2016-02-09 16:01 ` Robert Schwebel
2016-02-09 16:01 ` [PATCH 4/5] ratp: remove unused ratp_close command Robert Schwebel
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Robert Schwebel @ 2016-02-09 16:01 UTC (permalink / raw)
To: barebox
This documentation snippet was already added to the tree, but not
included anywhere.
Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
---
Documentation/user/user-manual.rst | 1 +
1 file changed, 1 insertion(+)
diff --git a/Documentation/user/user-manual.rst b/Documentation/user/user-manual.rst
index 0d6daee..be44f0d 100644
--- a/Documentation/user/user-manual.rst
+++ b/Documentation/user/user-manual.rst
@@ -27,6 +27,7 @@ Contents:
usb
ubi
booting-linux
+ remote-control
system-setup
reset-reason
system-reset
--
2.7.0.rc3
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 4/5] ratp: remove unused ratp_close command
2016-02-09 16:01 [PATCH 1/5] Documentation: booting linux: improve wording Robert Schwebel
2016-02-09 16:01 ` [PATCH 2/5] Documentation: m25p80: include in documentation Robert Schwebel
2016-02-09 16:01 ` [PATCH 3/5] Documentation: user manual: include documentation for remote-control Robert Schwebel
@ 2016-02-09 16:01 ` Robert Schwebel
2016-02-09 16:01 ` [PATCH 5/5] Documentation: commands: remove autogenerated directory on mrproper Robert Schwebel
2016-02-10 7:20 ` [PATCH 1/5] Documentation: booting linux: improve wording Sascha Hauer
4 siblings, 0 replies; 6+ messages in thread
From: Robert Schwebel @ 2016-02-09 16:01 UTC (permalink / raw)
To: barebox
This is a leftover from development, remove.
Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
---
common/ratp.c | 16 +---------------
1 file changed, 1 insertion(+), 15 deletions(-)
diff --git a/common/ratp.c b/common/ratp.c
index 2fef3cc..e879e2b 100644
--- a/common/ratp.c
+++ b/common/ratp.c
@@ -398,20 +398,6 @@ out:
ratp_console_unregister(ctx);
}
-static int do_ratp_close(int argc, char *argv[])
-{
- if (ratp_command_ctx && ratp_command_ctx->cdev)
- ratp_console_unregister(ratp_command_ctx);
- else
- printf("ratp is not active\n");
-
- return 0;
-}
-
-BAREBOX_CMD_START(ratp_close)
- .cmd = do_ratp_close,
-};
-
int barebox_ratp_fs_call(struct ratp_bb_pkt *tx, struct ratp_bb_pkt **rx)
{
struct ratp_ctx *ctx = ratp_command_ctx;
@@ -508,4 +494,4 @@ static void barebox_ratp_close(void)
if (ratp_command_ctx && ratp_command_ctx->cdev)
ratp_console_unregister(ratp_command_ctx);
}
-predevshutdown_exitcall(barebox_ratp_close);
\ No newline at end of file
+predevshutdown_exitcall(barebox_ratp_close);
--
2.7.0.rc3
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 5/5] Documentation: commands: remove autogenerated directory on mrproper
2016-02-09 16:01 [PATCH 1/5] Documentation: booting linux: improve wording Robert Schwebel
` (2 preceding siblings ...)
2016-02-09 16:01 ` [PATCH 4/5] ratp: remove unused ratp_close command Robert Schwebel
@ 2016-02-09 16:01 ` Robert Schwebel
2016-02-10 7:20 ` [PATCH 1/5] Documentation: booting linux: improve wording Sascha Hauer
4 siblings, 0 replies; 6+ messages in thread
From: Robert Schwebel @ 2016-02-09 16:01 UTC (permalink / raw)
To: barebox
On 'make mrproper', remove the directory hierarchy autogenerated with
'make docs'.
Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 73fb09b..5c5b85c 100644
--- a/Makefile
+++ b/Makefile
@@ -965,7 +965,7 @@ CLEAN_FILES += barebox System.map include/generated/barebox_default_env.h \
barebox.efi barebox.canon-a1100.bin
# Directories & files removed with 'make mrproper'
-MRPROPER_DIRS += include/config usr/include include/generated
+MRPROPER_DIRS += include/config usr/include include/generated Documentation/commands
MRPROPER_FILES += .config .config.old .version .old_version \
include/config.h \
Module.symvers tags TAGS cscope*
--
2.7.0.rc3
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 1/5] Documentation: booting linux: improve wording
2016-02-09 16:01 [PATCH 1/5] Documentation: booting linux: improve wording Robert Schwebel
` (3 preceding siblings ...)
2016-02-09 16:01 ` [PATCH 5/5] Documentation: commands: remove autogenerated directory on mrproper Robert Schwebel
@ 2016-02-10 7:20 ` Sascha Hauer
4 siblings, 0 replies; 6+ messages in thread
From: Sascha Hauer @ 2016-02-10 7:20 UTC (permalink / raw)
To: Robert Schwebel; +Cc: barebox
On Tue, Feb 09, 2016 at 05:01:20PM +0100, Robert Schwebel wrote:
> 'bootm' is the lowlevel boot command, in contrast to 'boot', which is
> more highlevel.
>
> Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
Applied, thanks
Sascha
--
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] 6+ messages in thread
end of thread, other threads:[~2016-02-10 7:20 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-09 16:01 [PATCH 1/5] Documentation: booting linux: improve wording Robert Schwebel
2016-02-09 16:01 ` [PATCH 2/5] Documentation: m25p80: include in documentation Robert Schwebel
2016-02-09 16:01 ` [PATCH 3/5] Documentation: user manual: include documentation for remote-control Robert Schwebel
2016-02-09 16:01 ` [PATCH 4/5] ratp: remove unused ratp_close command Robert Schwebel
2016-02-09 16:01 ` [PATCH 5/5] Documentation: commands: remove autogenerated directory on mrproper Robert Schwebel
2016-02-10 7:20 ` [PATCH 1/5] Documentation: booting linux: improve wording Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox