* [U-Boot] [PATCH 1/5] ubi: Kconfig: Fix MTD_UBI selection dependency
@ 2017-07-12 16:11 Karl Beldan
2017-07-12 16:11 ` [U-Boot] [PATCH 2/5] cmd: Kconfig: Fix a dependency of CMD_MTDPARTS Karl Beldan
` (5 more replies)
0 siblings, 6 replies; 15+ messages in thread
From: Karl Beldan @ 2017-07-12 16:11 UTC (permalink / raw)
To: u-boot
From: Karl Beldan <karl.beldan-ext@sagemcom.com>
Remove the ARCH_SUNXI dependency on selection of RBTREE.
Cc: Boris Brezillon <boris.brezillon@free-electrons.com>
Cc: Maxime Ripard <maxime.ripard@free-electrons.com>
Cc: Jagan Teki <jagan@openedev.com>
Signed-off-by: Karl Beldan <karl.beldan-ext@sagemcom.com>
---
drivers/mtd/ubi/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mtd/ubi/Kconfig b/drivers/mtd/ubi/Kconfig
index cb9ba78681..165273e438 100644
--- a/drivers/mtd/ubi/Kconfig
+++ b/drivers/mtd/ubi/Kconfig
@@ -3,7 +3,7 @@ menu "UBI support"
config MTD_UBI
bool "Enable UBI - Unsorted block images"
select CRC32
- select RBTREE if ARCH_SUNXI
+ select RBTREE
help
UBI is a software layer above MTD layer which admits of LVM-like
logical volumes on top of MTD devices, hides some complexities of
--
2.13.0
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [U-Boot] [PATCH 2/5] cmd: Kconfig: Fix a dependency of CMD_MTDPARTS
2017-07-12 16:11 [U-Boot] [PATCH 1/5] ubi: Kconfig: Fix MTD_UBI selection dependency Karl Beldan
@ 2017-07-12 16:11 ` Karl Beldan
2017-07-12 18:14 ` Tom Rini
2017-07-25 0:44 ` [U-Boot] [U-Boot, " Tom Rini
2017-07-12 16:11 ` [U-Boot] [PATCH 3/5] ubi: Kconfig: Make MTD_UBI select MTD_PARTITIONS Karl Beldan
` (4 subsequent siblings)
5 siblings, 2 replies; 15+ messages in thread
From: Karl Beldan @ 2017-07-12 16:11 UTC (permalink / raw)
To: u-boot
From: Karl Beldan <karl.beldan-ext@sagemcom.com>
Remove the ARCH_SUNXI dependency.
Cc: Maxime Ripard <maxime.ripard@free-electrons.com>
Cc: Jagan Teki <jagan@openedev.com>
Signed-off-by: Karl Beldan <karl.beldan-ext@sagemcom.com>
---
cmd/Kconfig | 1 -
1 file changed, 1 deletion(-)
diff --git a/cmd/Kconfig b/cmd/Kconfig
index c80ac364ea..87ee2ea613 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -1196,7 +1196,6 @@ config CMD_JFFS2
filesystem information.
config CMD_MTDPARTS
- depends on ARCH_SUNXI
bool "MTD partition support"
help
MTD partition support
--
2.13.0
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [U-Boot] [PATCH 3/5] ubi: Kconfig: Make MTD_UBI select MTD_PARTITIONS
2017-07-12 16:11 [U-Boot] [PATCH 1/5] ubi: Kconfig: Fix MTD_UBI selection dependency Karl Beldan
2017-07-12 16:11 ` [U-Boot] [PATCH 2/5] cmd: Kconfig: Fix a dependency of CMD_MTDPARTS Karl Beldan
@ 2017-07-12 16:11 ` Karl Beldan
2017-07-12 18:14 ` Tom Rini
2017-07-25 0:44 ` [U-Boot] [U-Boot, " Tom Rini
2017-07-12 16:11 ` [U-Boot] [PATCH 4/5] cmd: Kconfig: Make CMD_UBI select CMD_MTDPARTS Karl Beldan
` (3 subsequent siblings)
5 siblings, 2 replies; 15+ messages in thread
From: Karl Beldan @ 2017-07-12 16:11 UTC (permalink / raw)
To: u-boot
From: Karl Beldan <karl.beldan-ext@sagemcom.com>
This missing dependency has probably remained under the radar because
MTD_PARTITIONS is still whitelisted.
Signed-off-by: Karl Beldan <karl.beldan-ext@sagemcom.com>
---
drivers/mtd/ubi/Kconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/mtd/ubi/Kconfig b/drivers/mtd/ubi/Kconfig
index 165273e438..caa5197df5 100644
--- a/drivers/mtd/ubi/Kconfig
+++ b/drivers/mtd/ubi/Kconfig
@@ -4,6 +4,7 @@ config MTD_UBI
bool "Enable UBI - Unsorted block images"
select CRC32
select RBTREE
+ select MTD_PARTITIONS
help
UBI is a software layer above MTD layer which admits of LVM-like
logical volumes on top of MTD devices, hides some complexities of
--
2.13.0
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [U-Boot] [PATCH 4/5] cmd: Kconfig: Make CMD_UBI select CMD_MTDPARTS
2017-07-12 16:11 [U-Boot] [PATCH 1/5] ubi: Kconfig: Fix MTD_UBI selection dependency Karl Beldan
2017-07-12 16:11 ` [U-Boot] [PATCH 2/5] cmd: Kconfig: Fix a dependency of CMD_MTDPARTS Karl Beldan
2017-07-12 16:11 ` [U-Boot] [PATCH 3/5] ubi: Kconfig: Make MTD_UBI select MTD_PARTITIONS Karl Beldan
@ 2017-07-12 16:11 ` Karl Beldan
2017-07-12 18:14 ` Tom Rini
2017-07-25 0:45 ` [U-Boot] [U-Boot, " Tom Rini
2017-07-12 16:11 ` [U-Boot] [PATCH 5/5] cmd: Kconfig: Fix CMD_UBIFS dependencies Karl Beldan
` (2 subsequent siblings)
5 siblings, 2 replies; 15+ messages in thread
From: Karl Beldan @ 2017-07-12 16:11 UTC (permalink / raw)
To: u-boot
From: Karl Beldan <karl.beldan-ext@sagemcom.com>
Many configs still define CMD_MTDPARTS in their non-Kconfig but
CMD_MTDPARTS has now moved to Kconfig.
Signed-off-by: Karl Beldan <karl.beldan-ext@sagemcom.com>
---
cmd/Kconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/cmd/Kconfig b/cmd/Kconfig
index 87ee2ea613..92576f5734 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -1255,6 +1255,7 @@ config CMD_UBI
tristate "Enable UBI - Unsorted block images commands"
select CRC32
select MTD_UBI
+ select CMD_MTDPARTS
default y if NAND_SUNXI
help
UBI is a software layer above MTD layer which admits use of LVM-like
--
2.13.0
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [U-Boot] [PATCH 5/5] cmd: Kconfig: Fix CMD_UBIFS dependencies
2017-07-12 16:11 [U-Boot] [PATCH 1/5] ubi: Kconfig: Fix MTD_UBI selection dependency Karl Beldan
` (2 preceding siblings ...)
2017-07-12 16:11 ` [U-Boot] [PATCH 4/5] cmd: Kconfig: Make CMD_UBI select CMD_MTDPARTS Karl Beldan
@ 2017-07-12 16:11 ` Karl Beldan
2017-07-12 18:14 ` Tom Rini
2017-07-25 0:45 ` [U-Boot] [U-Boot,5/5] " Tom Rini
2017-07-12 18:13 ` [U-Boot] [PATCH 1/5] ubi: Kconfig: Fix MTD_UBI selection dependency Tom Rini
2017-07-25 0:44 ` [U-Boot] [U-Boot, " Tom Rini
5 siblings, 2 replies; 15+ messages in thread
From: Karl Beldan @ 2017-07-12 16:11 UTC (permalink / raw)
To: u-boot
From: Karl Beldan <karl.beldan-ext@sagemcom.com>
Remove the ARCH_SUNXI and RBTREE dependencies.
CMD_UBIFS already gets RBTREE from CMD_UBI (from MTD_UBI), and should
the first become independant from the latter, there would likely be a
dependency on MTD_UBI anyway.
Cc: Boris Brezillon <boris.brezillon@free-electrons.com>
Cc: Jagan Teki <jagan@openedev.com>
Signed-off-by: Karl Beldan <karl.beldan-ext@sagemcom.com>
---
cmd/Kconfig | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/cmd/Kconfig b/cmd/Kconfig
index 92576f5734..8766243f0c 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -1269,8 +1269,7 @@ config CMD_UBIFS
tristate "Enable UBIFS - Unsorted block images filesystem commands"
depends on CMD_UBI
select CRC32
- select RBTREE if ARCH_SUNXI
- select LZO if ARCH_SUNXI
+ select LZO
default y if NAND_SUNXI
help
UBIFS is a file system for flash devices which works on top of UBI.
--
2.13.0
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [U-Boot] [PATCH 1/5] ubi: Kconfig: Fix MTD_UBI selection dependency
2017-07-12 16:11 [U-Boot] [PATCH 1/5] ubi: Kconfig: Fix MTD_UBI selection dependency Karl Beldan
` (3 preceding siblings ...)
2017-07-12 16:11 ` [U-Boot] [PATCH 5/5] cmd: Kconfig: Fix CMD_UBIFS dependencies Karl Beldan
@ 2017-07-12 18:13 ` Tom Rini
2017-07-25 0:44 ` [U-Boot] [U-Boot, " Tom Rini
5 siblings, 0 replies; 15+ messages in thread
From: Tom Rini @ 2017-07-12 18:13 UTC (permalink / raw)
To: u-boot
On Wed, Jul 12, 2017 at 04:11:43PM +0000, Karl Beldan wrote:
> From: Karl Beldan <karl.beldan-ext@sagemcom.com>
>
> Remove the ARCH_SUNXI dependency on selection of RBTREE.
>
> Cc: Boris Brezillon <boris.brezillon@free-electrons.com>
> Cc: Maxime Ripard <maxime.ripard@free-electrons.com>
> Cc: Jagan Teki <jagan@openedev.com>
> Signed-off-by: Karl Beldan <karl.beldan-ext@sagemcom.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20170712/6d2baf2d/attachment.sig>
^ permalink raw reply [flat|nested] 15+ messages in thread
* [U-Boot] [PATCH 2/5] cmd: Kconfig: Fix a dependency of CMD_MTDPARTS
2017-07-12 16:11 ` [U-Boot] [PATCH 2/5] cmd: Kconfig: Fix a dependency of CMD_MTDPARTS Karl Beldan
@ 2017-07-12 18:14 ` Tom Rini
2017-07-25 0:44 ` [U-Boot] [U-Boot, " Tom Rini
1 sibling, 0 replies; 15+ messages in thread
From: Tom Rini @ 2017-07-12 18:14 UTC (permalink / raw)
To: u-boot
On Wed, Jul 12, 2017 at 04:11:44PM +0000, Karl Beldan wrote:
> From: Karl Beldan <karl.beldan-ext@sagemcom.com>
>
> Remove the ARCH_SUNXI dependency.
>
> Cc: Maxime Ripard <maxime.ripard@free-electrons.com>
> Cc: Jagan Teki <jagan@openedev.com>
> Signed-off-by: Karl Beldan <karl.beldan-ext@sagemcom.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20170712/70ed7af3/attachment.sig>
^ permalink raw reply [flat|nested] 15+ messages in thread
* [U-Boot] [PATCH 3/5] ubi: Kconfig: Make MTD_UBI select MTD_PARTITIONS
2017-07-12 16:11 ` [U-Boot] [PATCH 3/5] ubi: Kconfig: Make MTD_UBI select MTD_PARTITIONS Karl Beldan
@ 2017-07-12 18:14 ` Tom Rini
2017-07-25 0:44 ` [U-Boot] [U-Boot, " Tom Rini
1 sibling, 0 replies; 15+ messages in thread
From: Tom Rini @ 2017-07-12 18:14 UTC (permalink / raw)
To: u-boot
On Wed, Jul 12, 2017 at 04:11:45PM +0000, Karl Beldan wrote:
> From: Karl Beldan <karl.beldan-ext@sagemcom.com>
>
> This missing dependency has probably remained under the radar because
> MTD_PARTITIONS is still whitelisted.
>
> Signed-off-by: Karl Beldan <karl.beldan-ext@sagemcom.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20170712/d8a8d4b7/attachment.sig>
^ permalink raw reply [flat|nested] 15+ messages in thread
* [U-Boot] [PATCH 4/5] cmd: Kconfig: Make CMD_UBI select CMD_MTDPARTS
2017-07-12 16:11 ` [U-Boot] [PATCH 4/5] cmd: Kconfig: Make CMD_UBI select CMD_MTDPARTS Karl Beldan
@ 2017-07-12 18:14 ` Tom Rini
2017-07-25 0:45 ` [U-Boot] [U-Boot, " Tom Rini
1 sibling, 0 replies; 15+ messages in thread
From: Tom Rini @ 2017-07-12 18:14 UTC (permalink / raw)
To: u-boot
On Wed, Jul 12, 2017 at 04:11:46PM +0000, Karl Beldan wrote:
> From: Karl Beldan <karl.beldan-ext@sagemcom.com>
>
> Many configs still define CMD_MTDPARTS in their non-Kconfig but
> CMD_MTDPARTS has now moved to Kconfig.
>
> Signed-off-by: Karl Beldan <karl.beldan-ext@sagemcom.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20170712/414483f8/attachment.sig>
^ permalink raw reply [flat|nested] 15+ messages in thread
* [U-Boot] [PATCH 5/5] cmd: Kconfig: Fix CMD_UBIFS dependencies
2017-07-12 16:11 ` [U-Boot] [PATCH 5/5] cmd: Kconfig: Fix CMD_UBIFS dependencies Karl Beldan
@ 2017-07-12 18:14 ` Tom Rini
2017-07-25 0:45 ` [U-Boot] [U-Boot,5/5] " Tom Rini
1 sibling, 0 replies; 15+ messages in thread
From: Tom Rini @ 2017-07-12 18:14 UTC (permalink / raw)
To: u-boot
On Wed, Jul 12, 2017 at 04:11:47PM +0000, Karl Beldan wrote:
> From: Karl Beldan <karl.beldan-ext@sagemcom.com>
>
> Remove the ARCH_SUNXI and RBTREE dependencies.
> CMD_UBIFS already gets RBTREE from CMD_UBI (from MTD_UBI), and should
> the first become independant from the latter, there would likely be a
> dependency on MTD_UBI anyway.
>
> Cc: Boris Brezillon <boris.brezillon@free-electrons.com>
> Cc: Jagan Teki <jagan@openedev.com>
> Signed-off-by: Karl Beldan <karl.beldan-ext@sagemcom.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
That said, we should move on to also having a populated fs/ubifs/Kconfig
that controls fs/ubifs/ and CMD_UBIFS should depend on that (and we also
need the same for ubi, and in turn, correct dependencies between ubi and
ubifs. Your patch moves things in the right direction, thanks!
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20170712/847eadeb/attachment.sig>
^ permalink raw reply [flat|nested] 15+ messages in thread
* [U-Boot] [U-Boot, 1/5] ubi: Kconfig: Fix MTD_UBI selection dependency
2017-07-12 16:11 [U-Boot] [PATCH 1/5] ubi: Kconfig: Fix MTD_UBI selection dependency Karl Beldan
` (4 preceding siblings ...)
2017-07-12 18:13 ` [U-Boot] [PATCH 1/5] ubi: Kconfig: Fix MTD_UBI selection dependency Tom Rini
@ 2017-07-25 0:44 ` Tom Rini
5 siblings, 0 replies; 15+ messages in thread
From: Tom Rini @ 2017-07-25 0:44 UTC (permalink / raw)
To: u-boot
On Wed, Jul 12, 2017 at 04:11:43PM +0000, karl beldan wrote:
> From: Karl Beldan <karl.beldan-ext@sagemcom.com>
>
> Remove the ARCH_SUNXI dependency on selection of RBTREE.
>
> Cc: Boris Brezillon <boris.brezillon@free-electrons.com>
> Cc: Maxime Ripard <maxime.ripard@free-electrons.com>
> Cc: Jagan Teki <jagan@openedev.com>
> Signed-off-by: Karl Beldan <karl.beldan-ext@sagemcom.com>
> Reviewed-by: Tom Rini <trini@konsulko.com>
Applied to u-boot/master, thanks!
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20170724/88de17f3/attachment.sig>
^ permalink raw reply [flat|nested] 15+ messages in thread
* [U-Boot] [U-Boot, 2/5] cmd: Kconfig: Fix a dependency of CMD_MTDPARTS
2017-07-12 16:11 ` [U-Boot] [PATCH 2/5] cmd: Kconfig: Fix a dependency of CMD_MTDPARTS Karl Beldan
2017-07-12 18:14 ` Tom Rini
@ 2017-07-25 0:44 ` Tom Rini
1 sibling, 0 replies; 15+ messages in thread
From: Tom Rini @ 2017-07-25 0:44 UTC (permalink / raw)
To: u-boot
On Wed, Jul 12, 2017 at 04:11:44PM +0000, karl beldan wrote:
> From: Karl Beldan <karl.beldan-ext@sagemcom.com>
>
> Remove the ARCH_SUNXI dependency.
>
> Cc: Maxime Ripard <maxime.ripard@free-electrons.com>
> Cc: Jagan Teki <jagan@openedev.com>
> Signed-off-by: Karl Beldan <karl.beldan-ext@sagemcom.com>
> Reviewed-by: Tom Rini <trini@konsulko.com>
Applied to u-boot/master, thanks!
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20170724/62bc0589/attachment.sig>
^ permalink raw reply [flat|nested] 15+ messages in thread
* [U-Boot] [U-Boot, 3/5] ubi: Kconfig: Make MTD_UBI select MTD_PARTITIONS
2017-07-12 16:11 ` [U-Boot] [PATCH 3/5] ubi: Kconfig: Make MTD_UBI select MTD_PARTITIONS Karl Beldan
2017-07-12 18:14 ` Tom Rini
@ 2017-07-25 0:44 ` Tom Rini
1 sibling, 0 replies; 15+ messages in thread
From: Tom Rini @ 2017-07-25 0:44 UTC (permalink / raw)
To: u-boot
On Wed, Jul 12, 2017 at 04:11:45PM +0000, karl beldan wrote:
> From: Karl Beldan <karl.beldan-ext@sagemcom.com>
>
> This missing dependency has probably remained under the radar because
> MTD_PARTITIONS is still whitelisted.
>
> Signed-off-by: Karl Beldan <karl.beldan-ext@sagemcom.com>
> Reviewed-by: Tom Rini <trini@konsulko.com>
Applied to u-boot/master, thanks!
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20170724/4cd72cc5/attachment.sig>
^ permalink raw reply [flat|nested] 15+ messages in thread
* [U-Boot] [U-Boot, 4/5] cmd: Kconfig: Make CMD_UBI select CMD_MTDPARTS
2017-07-12 16:11 ` [U-Boot] [PATCH 4/5] cmd: Kconfig: Make CMD_UBI select CMD_MTDPARTS Karl Beldan
2017-07-12 18:14 ` Tom Rini
@ 2017-07-25 0:45 ` Tom Rini
1 sibling, 0 replies; 15+ messages in thread
From: Tom Rini @ 2017-07-25 0:45 UTC (permalink / raw)
To: u-boot
On Wed, Jul 12, 2017 at 04:11:46PM +0000, karl beldan wrote:
> From: Karl Beldan <karl.beldan-ext@sagemcom.com>
>
> Many configs still define CMD_MTDPARTS in their non-Kconfig but
> CMD_MTDPARTS has now moved to Kconfig.
>
> Signed-off-by: Karl Beldan <karl.beldan-ext@sagemcom.com>
> Reviewed-by: Tom Rini <trini@konsulko.com>
Applied to u-boot/master, thanks!
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20170724/a5e5f472/attachment.sig>
^ permalink raw reply [flat|nested] 15+ messages in thread
* [U-Boot] [U-Boot,5/5] cmd: Kconfig: Fix CMD_UBIFS dependencies
2017-07-12 16:11 ` [U-Boot] [PATCH 5/5] cmd: Kconfig: Fix CMD_UBIFS dependencies Karl Beldan
2017-07-12 18:14 ` Tom Rini
@ 2017-07-25 0:45 ` Tom Rini
1 sibling, 0 replies; 15+ messages in thread
From: Tom Rini @ 2017-07-25 0:45 UTC (permalink / raw)
To: u-boot
On Wed, Jul 12, 2017 at 04:11:47PM +0000, karl beldan wrote:
> From: Karl Beldan <karl.beldan-ext@sagemcom.com>
>
> Remove the ARCH_SUNXI and RBTREE dependencies.
> CMD_UBIFS already gets RBTREE from CMD_UBI (from MTD_UBI), and should
> the first become independant from the latter, there would likely be a
> dependency on MTD_UBI anyway.
>
> Cc: Boris Brezillon <boris.brezillon@free-electrons.com>
> Cc: Jagan Teki <jagan@openedev.com>
> Signed-off-by: Karl Beldan <karl.beldan-ext@sagemcom.com>
> Reviewed-by: Tom Rini <trini@konsulko.com>
Applied to u-boot/master, thanks!
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20170724/81e19479/attachment.sig>
^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2017-07-25 0:45 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-12 16:11 [U-Boot] [PATCH 1/5] ubi: Kconfig: Fix MTD_UBI selection dependency Karl Beldan
2017-07-12 16:11 ` [U-Boot] [PATCH 2/5] cmd: Kconfig: Fix a dependency of CMD_MTDPARTS Karl Beldan
2017-07-12 18:14 ` Tom Rini
2017-07-25 0:44 ` [U-Boot] [U-Boot, " Tom Rini
2017-07-12 16:11 ` [U-Boot] [PATCH 3/5] ubi: Kconfig: Make MTD_UBI select MTD_PARTITIONS Karl Beldan
2017-07-12 18:14 ` Tom Rini
2017-07-25 0:44 ` [U-Boot] [U-Boot, " Tom Rini
2017-07-12 16:11 ` [U-Boot] [PATCH 4/5] cmd: Kconfig: Make CMD_UBI select CMD_MTDPARTS Karl Beldan
2017-07-12 18:14 ` Tom Rini
2017-07-25 0:45 ` [U-Boot] [U-Boot, " Tom Rini
2017-07-12 16:11 ` [U-Boot] [PATCH 5/5] cmd: Kconfig: Fix CMD_UBIFS dependencies Karl Beldan
2017-07-12 18:14 ` Tom Rini
2017-07-25 0:45 ` [U-Boot] [U-Boot,5/5] " Tom Rini
2017-07-12 18:13 ` [U-Boot] [PATCH 1/5] ubi: Kconfig: Fix MTD_UBI selection dependency Tom Rini
2017-07-25 0:44 ` [U-Boot] [U-Boot, " Tom Rini
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox