All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] sunxi: configs/sunxi-common.h: Enable CONFIG_CMD_PART
@ 2015-02-03 23:43 Hans de Goede
  2015-02-04  8:27 ` Ian Campbell
  2015-02-12  0:44 ` [U-Boot] " Tom Rini
  0 siblings, 2 replies; 5+ messages in thread
From: Hans de Goede @ 2015-02-03 23:43 UTC (permalink / raw)
  To: u-boot

The recent changes to config_distro_bootcmd.h require CONFIG_CMD_PART to be
defined, as the default bootcmd not uses the "part" command.

This fixes sunxi boards not booting with v2015.04-rc1.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
 include/configs/sunxi-common.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/include/configs/sunxi-common.h b/include/configs/sunxi-common.h
index bf60dcb..9e145f0 100644
--- a/include/configs/sunxi-common.h
+++ b/include/configs/sunxi-common.h
@@ -144,6 +144,9 @@
 #define CONFIG_CMD_MEMORY
 #define CONFIG_CMD_SETEXPR
 
+#define CONFIG_PARTITION_UUIDS
+#define CONFIG_CMD_PART
+
 #define CONFIG_SETUP_MEMORY_TAGS
 #define CONFIG_CMDLINE_TAG
 #define CONFIG_INITRD_TAG
-- 
2.2.2

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

* [U-Boot] [PATCH] sunxi: configs/sunxi-common.h: Enable CONFIG_CMD_PART
  2015-02-03 23:43 [U-Boot] [PATCH] sunxi: configs/sunxi-common.h: Enable CONFIG_CMD_PART Hans de Goede
@ 2015-02-04  8:27 ` Ian Campbell
  2015-02-04  8:34   ` Hans de Goede
  2015-02-04 16:57   ` Stephen Warren
  2015-02-12  0:44 ` [U-Boot] " Tom Rini
  1 sibling, 2 replies; 5+ messages in thread
From: Ian Campbell @ 2015-02-04  8:27 UTC (permalink / raw)
  To: u-boot

On Wed, 2015-02-04 at 00:43 +0100, Hans de Goede wrote:
> The recent changes to config_distro_bootcmd.h require CONFIG_CMD_PART to be
> defined, as the default bootcmd not uses the "part" command.
                                   ^w

Shouldn't config_distro_bootcmd.h (or perhaps config_distro_defaults.h)
enable CMD_PART then? (adding some relevant CCs)

Ian.

> This fixes sunxi boards not booting with v2015.04-rc1.
> 
> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
> ---
>  include/configs/sunxi-common.h | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/include/configs/sunxi-common.h b/include/configs/sunxi-common.h
> index bf60dcb..9e145f0 100644
> --- a/include/configs/sunxi-common.h
> +++ b/include/configs/sunxi-common.h
> @@ -144,6 +144,9 @@
>  #define CONFIG_CMD_MEMORY
>  #define CONFIG_CMD_SETEXPR
>  
> +#define CONFIG_PARTITION_UUIDS
> +#define CONFIG_CMD_PART
> +
>  #define CONFIG_SETUP_MEMORY_TAGS
>  #define CONFIG_CMDLINE_TAG
>  #define CONFIG_INITRD_TAG

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

* [U-Boot] [PATCH] sunxi: configs/sunxi-common.h: Enable CONFIG_CMD_PART
  2015-02-04  8:27 ` Ian Campbell
@ 2015-02-04  8:34   ` Hans de Goede
  2015-02-04 16:57   ` Stephen Warren
  1 sibling, 0 replies; 5+ messages in thread
From: Hans de Goede @ 2015-02-04  8:34 UTC (permalink / raw)
  To: u-boot

Hi,

On 04-02-15 09:27, Ian Campbell wrote:
> On Wed, 2015-02-04 at 00:43 +0100, Hans de Goede wrote:
>> The recent changes to config_distro_bootcmd.h require CONFIG_CMD_PART to be
>> defined, as the default bootcmd not uses the "part" command.
>                                     ^w
>
> Shouldn't config_distro_bootcmd.h (or perhaps config_distro_defaults.h)
> enable CMD_PART then? (adding some relevant CCs)

I was thinking the same myself, but I was not sure, so I thought lets go
with a quick fix for now and discuss this further on the list :)

A quick grep shows that config_distro_bootcmd.h is only included from
headers under include/configs/*.h, so enabling it there should get it
defined early enough for it to be properly picked up, so from my
pov yes that is a better solution.

Regards,

Hans


p.s.

Have you seen my reply to your review of "[PATCH 1/2] sunxi: video: Do not use CONFIG_SYS_MEM_TOP_HIDE for the framebuffer" ?
I'm waiting on input from you there on the fdt_fixup_memory_banks()
thingie, which I would prefer to keep as is. An "Acked-by" under
the condition that I fix up the Linux specific comments would be
welcome :)


>
> Ian.
>
>> This fixes sunxi boards not booting with v2015.04-rc1.
>>
>> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
>> ---
>>   include/configs/sunxi-common.h | 3 +++
>>   1 file changed, 3 insertions(+)
>>
>> diff --git a/include/configs/sunxi-common.h b/include/configs/sunxi-common.h
>> index bf60dcb..9e145f0 100644
>> --- a/include/configs/sunxi-common.h
>> +++ b/include/configs/sunxi-common.h
>> @@ -144,6 +144,9 @@
>>   #define CONFIG_CMD_MEMORY
>>   #define CONFIG_CMD_SETEXPR
>>
>> +#define CONFIG_PARTITION_UUIDS
>> +#define CONFIG_CMD_PART
>> +
>>   #define CONFIG_SETUP_MEMORY_TAGS
>>   #define CONFIG_CMDLINE_TAG
>>   #define CONFIG_INITRD_TAG
>
>

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

* [U-Boot] [PATCH] sunxi: configs/sunxi-common.h: Enable CONFIG_CMD_PART
  2015-02-04  8:27 ` Ian Campbell
  2015-02-04  8:34   ` Hans de Goede
@ 2015-02-04 16:57   ` Stephen Warren
  1 sibling, 0 replies; 5+ messages in thread
From: Stephen Warren @ 2015-02-04 16:57 UTC (permalink / raw)
  To: u-boot

On 02/04/2015 01:27 AM, Ian Campbell wrote:
> On Wed, 2015-02-04 at 00:43 +0100, Hans de Goede wrote:
>> The recent changes to config_distro_bootcmd.h require CONFIG_CMD_PART to be
>> defined, as the default bootcmd not uses the "part" command.
>                                     ^w
>
> Shouldn't config_distro_bootcmd.h (or perhaps config_distro_defaults.h)
> enable CMD_PART then? (adding some relevant CCs)

That sounds like the correct solution to me.

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

* [U-Boot] sunxi: configs/sunxi-common.h: Enable CONFIG_CMD_PART
  2015-02-03 23:43 [U-Boot] [PATCH] sunxi: configs/sunxi-common.h: Enable CONFIG_CMD_PART Hans de Goede
  2015-02-04  8:27 ` Ian Campbell
@ 2015-02-12  0:44 ` Tom Rini
  1 sibling, 0 replies; 5+ messages in thread
From: Tom Rini @ 2015-02-12  0:44 UTC (permalink / raw)
  To: u-boot

On Wed, Feb 04, 2015 at 12:43:36AM +0100, Hans de Goede wrote:

> The recent changes to config_distro_bootcmd.h require CONFIG_CMD_PART to be
> defined, as the default bootcmd not uses the "part" command.
> 
> This fixes sunxi boards not booting with v2015.04-rc1.
> 
> Signed-off-by: Hans de Goede <hdegoede@redhat.com>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20150211/dcb7546b/attachment.sig>

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

end of thread, other threads:[~2015-02-12  0:44 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-03 23:43 [U-Boot] [PATCH] sunxi: configs/sunxi-common.h: Enable CONFIG_CMD_PART Hans de Goede
2015-02-04  8:27 ` Ian Campbell
2015-02-04  8:34   ` Hans de Goede
2015-02-04 16:57   ` Stephen Warren
2015-02-12  0:44 ` [U-Boot] " Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.