[source] packge/boot/rbcfg: add new boot constants found in the recent Mikrotik devices

LEDE Commits lede-commits at lists.infradead.org
Sun Feb 26 04:31:57 PST 2017


nbd pushed a commit to source.git, branch master:
https://git.lede-project.org/ffa9f3d74b777be78581f04811ff8df1699c6337

commit ffa9f3d74b777be78581f04811ff8df1699c6337
Author: Alex Samorukov <samm at os2.kiev.ua>
AuthorDate: Tue Feb 21 12:02:51 2017 +0100

    packge/boot/rbcfg: add new boot constants found in the recent Mikrotik devices
    
    Signed-off-by: Alex Samorukov <samm at os2.kiev.ua>
---
 package/boot/rbcfg/src/main.c  | 4 ++++
 package/boot/rbcfg/src/rbcfg.h | 2 ++
 2 files changed, 6 insertions(+)

diff --git a/package/boot/rbcfg/src/main.c b/package/boot/rbcfg/src/main.c
index b7cf79f..9aedcc5 100644
--- a/package/boot/rbcfg/src/main.c
+++ b/package/boot/rbcfg/src/main.c
@@ -101,6 +101,10 @@ static const struct rbcfg_value rbcfg_boot_device[] = {
 		RB_BOOT_DEVICE_ETHONCE),
 	CFG_U32("nand", "boot from NAND only",
 		RB_BOOT_DEVICE_NANDONLY),
+	CFG_U32("flash", "boot in flash configuration mode",
+		RB_BOOT_DEVICE_FLASHCFG),
+	CFG_U32("flashnand", "boot in flash configuration mode once, then NAND",
+		RB_BOOT_DEVICE_FLSHONCE),
 };
 
 static const struct rbcfg_value rbcfg_boot_key[] = {
diff --git a/package/boot/rbcfg/src/rbcfg.h b/package/boot/rbcfg/src/rbcfg.h
index 899161a..864bc82 100644
--- a/package/boot/rbcfg/src/rbcfg.h
+++ b/package/boot/rbcfg/src/rbcfg.h
@@ -59,6 +59,8 @@
 #define RB_BOOT_DEVICE_CFCARD	2
 #define RB_BOOT_DEVICE_ETHONCE	3
 #define RB_BOOT_DEVICE_NANDONLY	5
+#define RB_BOOT_DEVICE_FLASHCFG	7
+#define RB_BOOT_DEVICE_FLSHONCE	8
 
 #define RB_BOOT_KEY_ANY		0
 #define RB_BOOT_KEY_DEL		1



More information about the lede-commits mailing list