All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v2 0/2] defconfig fixes
@ 2022-02-17 15:55 Marcus Hoffmann
  2022-02-17 15:55 ` [Buildroot] [PATCH v2 1/2] configs/friendlyarm_nanopi_r2s_defconfig: uboot needs openssl Marcus Hoffmann
  2022-02-17 15:55 ` [Buildroot] [PATCH v2 2/2] board/orangepi/orangepi-rk3399/genimage: fix partition types for gpt Marcus Hoffmann
  0 siblings, 2 replies; 10+ messages in thread
From: Marcus Hoffmann @ 2022-02-17 15:55 UTC (permalink / raw)
  To: buildroot

I was looking at some of the defconfigs and found these two easy to 
fix issues. I don't have those boards, so these are not tested besides
being able to compile them again.

Changes v1 -> v2:
  - Add references to gitlab CI's defconfig run failures (Giulio Benetti)

Marcus Hoffmann (2):
  configs/friendlyarm_nanopi_r2s_defconfig: uboot needs openssl
  board/orangepi/orangepi-rk3399/genimage: fix partition types for gpt

 board/orangepi/orangepi-rk3399/genimage.cfg | 3 +--
 configs/friendlyarm_nanopi_r2s_defconfig    | 1 +
 2 files changed, 2 insertions(+), 2 deletions(-)

-- 
2.25.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH v2 1/2] configs/friendlyarm_nanopi_r2s_defconfig: uboot needs openssl
  2022-02-17 15:55 [Buildroot] [PATCH v2 0/2] defconfig fixes Marcus Hoffmann
@ 2022-02-17 15:55 ` Marcus Hoffmann
  2022-02-17 15:58   ` Giulio Benetti
  2022-02-17 21:43   ` Yann E. MORIN
  2022-02-17 15:55 ` [Buildroot] [PATCH v2 2/2] board/orangepi/orangepi-rk3399/genimage: fix partition types for gpt Marcus Hoffmann
  1 sibling, 2 replies; 10+ messages in thread
From: Marcus Hoffmann @ 2022-02-17 15:55 UTC (permalink / raw)
  To: buildroot; +Cc: Gilles Talis

Fixes the following compile error:

In file included from include/bootm.h:10,
                 from tools/image-host.c:12:
include/image.h:1178:12: fatal error: openssl/evp.h: No such file or directory
 1178 | #  include <openssl/evp.h>
      |            ^~~~~~~~~~~~~~~
compilation terminated.

Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/2103784200

Signed-off-by: Marcus Hoffmann <marcus.hoffmann@othermo.de>
---
 configs/friendlyarm_nanopi_r2s_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/configs/friendlyarm_nanopi_r2s_defconfig b/configs/friendlyarm_nanopi_r2s_defconfig
index 818c847f4b..ce252a5d76 100644
--- a/configs/friendlyarm_nanopi_r2s_defconfig
+++ b/configs/friendlyarm_nanopi_r2s_defconfig
@@ -30,6 +30,7 @@ BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2021.10"
 BR2_TARGET_UBOOT_BOARD_DEFCONFIG="nanopi-r2s-rk3328"
 BR2_TARGET_UBOOT_NEEDS_DTC=y
 BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y
+BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
 BR2_TARGET_UBOOT_NEEDS_ATF_BL31=y
 BR2_TARGET_UBOOT_NEEDS_ATF_BL31_ELF=y
 BR2_TARGET_UBOOT_FORMAT_CUSTOM=y
-- 
2.25.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH v2 2/2] board/orangepi/orangepi-rk3399/genimage: fix partition types for gpt
  2022-02-17 15:55 [Buildroot] [PATCH v2 0/2] defconfig fixes Marcus Hoffmann
  2022-02-17 15:55 ` [Buildroot] [PATCH v2 1/2] configs/friendlyarm_nanopi_r2s_defconfig: uboot needs openssl Marcus Hoffmann
@ 2022-02-17 15:55 ` Marcus Hoffmann
  2022-02-17 15:58   ` Giulio Benetti
                     ` (2 more replies)
  1 sibling, 3 replies; 10+ messages in thread
From: Marcus Hoffmann @ 2022-02-17 15:55 UTC (permalink / raw)
  To: buildroot; +Cc: Suniel Mahesh

Fixes the following error during image generation:
  ERROR: hdimage(sdcard.img): part boot: 'partition-type' is only valid
  for mbr and hybrid partition-table-type

Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/2103784375

Signed-off-by: Marcus Hoffmann <marcus.hoffmann@othermo.de>
---
 board/orangepi/orangepi-rk3399/genimage.cfg | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/board/orangepi/orangepi-rk3399/genimage.cfg b/board/orangepi/orangepi-rk3399/genimage.cfg
index c94e0bc7cc..a02166172f 100644
--- a/board/orangepi/orangepi-rk3399/genimage.cfg
+++ b/board/orangepi/orangepi-rk3399/genimage.cfg
@@ -26,14 +26,13 @@ image sdcard.img {
 	}
 
 	partition boot {
-		partition-type = 0xC
+		partition-type-uuid = F
 		bootable = "true"
 		image = "boot.vfat"
 		offset = 16M
 	}
 
 	partition rootfs {
-		partition-type = 0x83
 		image = "rootfs.ext4"
 	}
 }
-- 
2.25.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v2 1/2] configs/friendlyarm_nanopi_r2s_defconfig: uboot needs openssl
  2022-02-17 15:55 ` [Buildroot] [PATCH v2 1/2] configs/friendlyarm_nanopi_r2s_defconfig: uboot needs openssl Marcus Hoffmann
@ 2022-02-17 15:58   ` Giulio Benetti
  2022-02-17 21:43   ` Yann E. MORIN
  1 sibling, 0 replies; 10+ messages in thread
From: Giulio Benetti @ 2022-02-17 15:58 UTC (permalink / raw)
  To: Marcus Hoffmann, buildroot; +Cc: Gilles Talis

On 17/02/22 16:55, Marcus Hoffmann wrote:
> Fixes the following compile error:
> 
> In file included from include/bootm.h:10,
>                   from tools/image-host.c:12:
> include/image.h:1178:12: fatal error: openssl/evp.h: No such file or directory
>   1178 | #  include <openssl/evp.h>
>        |            ^~~~~~~~~~~~~~~
> compilation terminated.
> 
> Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/2103784200
> 
> Signed-off-by: Marcus Hoffmann <marcus.hoffmann@othermo.de>

Reviewed-by: Giulio Benetti <giulio.benetti@benettiengineering.com>

Best regards
-- 
Giulio Benetti
Benetti Engineering sas

> ---
>   configs/friendlyarm_nanopi_r2s_defconfig | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/configs/friendlyarm_nanopi_r2s_defconfig b/configs/friendlyarm_nanopi_r2s_defconfig
> index 818c847f4b..ce252a5d76 100644
> --- a/configs/friendlyarm_nanopi_r2s_defconfig
> +++ b/configs/friendlyarm_nanopi_r2s_defconfig
> @@ -30,6 +30,7 @@ BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2021.10"
>   BR2_TARGET_UBOOT_BOARD_DEFCONFIG="nanopi-r2s-rk3328"
>   BR2_TARGET_UBOOT_NEEDS_DTC=y
>   BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y
> +BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
>   BR2_TARGET_UBOOT_NEEDS_ATF_BL31=y
>   BR2_TARGET_UBOOT_NEEDS_ATF_BL31_ELF=y
>   BR2_TARGET_UBOOT_FORMAT_CUSTOM=y

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v2 2/2] board/orangepi/orangepi-rk3399/genimage: fix partition types for gpt
  2022-02-17 15:55 ` [Buildroot] [PATCH v2 2/2] board/orangepi/orangepi-rk3399/genimage: fix partition types for gpt Marcus Hoffmann
@ 2022-02-17 15:58   ` Giulio Benetti
  2022-02-17 21:44   ` Yann E. MORIN
  2022-03-05 15:01   ` Arnout Vandecappelle
  2 siblings, 0 replies; 10+ messages in thread
From: Giulio Benetti @ 2022-02-17 15:58 UTC (permalink / raw)
  To: Marcus Hoffmann, buildroot; +Cc: Suniel Mahesh

On 17/02/22 16:55, Marcus Hoffmann wrote:
> Fixes the following error during image generation:
>    ERROR: hdimage(sdcard.img): part boot: 'partition-type' is only valid
>    for mbr and hybrid partition-table-type
> 
> Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/2103784375
> 
> Signed-off-by: Marcus Hoffmann <marcus.hoffmann@othermo.de>

Reviewed-by: Giulio Benetti <giulio.benetti@benettiengineering.com>

Best regards
-- 
Giulio Benetti
Benetti Engineering sas

> ---
>   board/orangepi/orangepi-rk3399/genimage.cfg | 3 +--
>   1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/board/orangepi/orangepi-rk3399/genimage.cfg b/board/orangepi/orangepi-rk3399/genimage.cfg
> index c94e0bc7cc..a02166172f 100644
> --- a/board/orangepi/orangepi-rk3399/genimage.cfg
> +++ b/board/orangepi/orangepi-rk3399/genimage.cfg
> @@ -26,14 +26,13 @@ image sdcard.img {
>   	}
>   
>   	partition boot {
> -		partition-type = 0xC
> +		partition-type-uuid = F
>   		bootable = "true"
>   		image = "boot.vfat"
>   		offset = 16M
>   	}
>   
>   	partition rootfs {
> -		partition-type = 0x83
>   		image = "rootfs.ext4"
>   	}
>   }

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v2 1/2] configs/friendlyarm_nanopi_r2s_defconfig: uboot needs openssl
  2022-02-17 15:55 ` [Buildroot] [PATCH v2 1/2] configs/friendlyarm_nanopi_r2s_defconfig: uboot needs openssl Marcus Hoffmann
  2022-02-17 15:58   ` Giulio Benetti
@ 2022-02-17 21:43   ` Yann E. MORIN
  1 sibling, 0 replies; 10+ messages in thread
From: Yann E. MORIN @ 2022-02-17 21:43 UTC (permalink / raw)
  To: Marcus Hoffmann; +Cc: Gilles Talis, buildroot

Marcus, All

On 2022-02-17 16:55 +0100, Marcus Hoffmann spake thusly:
> Fixes the following compile error:
> 
> In file included from include/bootm.h:10,
>                  from tools/image-host.c:12:
> include/image.h:1178:12: fatal error: openssl/evp.h: No such file or directory
>  1178 | #  include <openssl/evp.h>
>       |            ^~~~~~~~~~~~~~~
> compilation terminated.
> 
> Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/2103784200
> 
> Signed-off-by: Marcus Hoffmann <marcus.hoffmann@othermo.de>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  configs/friendlyarm_nanopi_r2s_defconfig | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/configs/friendlyarm_nanopi_r2s_defconfig b/configs/friendlyarm_nanopi_r2s_defconfig
> index 818c847f4b..ce252a5d76 100644
> --- a/configs/friendlyarm_nanopi_r2s_defconfig
> +++ b/configs/friendlyarm_nanopi_r2s_defconfig
> @@ -30,6 +30,7 @@ BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2021.10"
>  BR2_TARGET_UBOOT_BOARD_DEFCONFIG="nanopi-r2s-rk3328"
>  BR2_TARGET_UBOOT_NEEDS_DTC=y
>  BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y
> +BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
>  BR2_TARGET_UBOOT_NEEDS_ATF_BL31=y
>  BR2_TARGET_UBOOT_NEEDS_ATF_BL31_ELF=y
>  BR2_TARGET_UBOOT_FORMAT_CUSTOM=y
> -- 
> 2.25.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v2 2/2] board/orangepi/orangepi-rk3399/genimage: fix partition types for gpt
  2022-02-17 15:55 ` [Buildroot] [PATCH v2 2/2] board/orangepi/orangepi-rk3399/genimage: fix partition types for gpt Marcus Hoffmann
  2022-02-17 15:58   ` Giulio Benetti
@ 2022-02-17 21:44   ` Yann E. MORIN
  2022-02-17 21:47     ` Marcus Hoffmann
  2022-02-17 21:50     ` Giulio Benetti
  2022-03-05 15:01   ` Arnout Vandecappelle
  2 siblings, 2 replies; 10+ messages in thread
From: Yann E. MORIN @ 2022-02-17 21:44 UTC (permalink / raw)
  To: Marcus Hoffmann; +Cc: Suniel Mahesh, buildroot

Marcus, All,

On 2022-02-17 16:55 +0100, Marcus Hoffmann spake thusly:
> Fixes the following error during image generation:
>   ERROR: hdimage(sdcard.img): part boot: 'partition-type' is only valid
>   for mbr and hybrid partition-table-type
> 
> Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/2103784375
> 
> Signed-off-by: Marcus Hoffmann <marcus.hoffmann@othermo.de>
> ---
>  board/orangepi/orangepi-rk3399/genimage.cfg | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/board/orangepi/orangepi-rk3399/genimage.cfg b/board/orangepi/orangepi-rk3399/genimage.cfg
> index c94e0bc7cc..a02166172f 100644
> --- a/board/orangepi/orangepi-rk3399/genimage.cfg
> +++ b/board/orangepi/orangepi-rk3399/genimage.cfg
> @@ -26,14 +26,13 @@ image sdcard.img {
>  	}
>  
>  	partition boot {
> -		partition-type = 0xC
> +		partition-type-uuid = F
>  		bootable = "true"
>  		image = "boot.vfat"
>  		offset = 16M
>  	}
>  
>  	partition rootfs {
> -		partition-type = 0x83

Why don't you also switch this one to partition-type-uuid?

Regards,
Yann E. MORIN.

>  		image = "rootfs.ext4"
>  	}
>  }
> -- 
> 2.25.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v2 2/2] board/orangepi/orangepi-rk3399/genimage: fix partition types for gpt
  2022-02-17 21:44   ` Yann E. MORIN
@ 2022-02-17 21:47     ` Marcus Hoffmann
  2022-02-17 21:50     ` Giulio Benetti
  1 sibling, 0 replies; 10+ messages in thread
From: Marcus Hoffmann @ 2022-02-17 21:47 UTC (permalink / raw)
  To: Yann E. MORIN; +Cc: Suniel Mahesh, buildroot

Hi Yann,

On 17.02.22 22:44, Yann E. MORIN wrote:
> Marcus, All,
> 
> On 2022-02-17 16:55 +0100, Marcus Hoffmann spake thusly:
>> Fixes the following error during image generation:
>>    ERROR: hdimage(sdcard.img): part boot: 'partition-type' is only valid
>>    for mbr and hybrid partition-table-type
>>
>> Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/2103784375
>>
>> Signed-off-by: Marcus Hoffmann <marcus.hoffmann@othermo.de>
>> ---
>>   board/orangepi/orangepi-rk3399/genimage.cfg | 3 +--
>>   1 file changed, 1 insertion(+), 2 deletions(-)
>>
>> diff --git a/board/orangepi/orangepi-rk3399/genimage.cfg b/board/orangepi/orangepi-rk3399/genimage.cfg
>> index c94e0bc7cc..a02166172f 100644
>> --- a/board/orangepi/orangepi-rk3399/genimage.cfg
>> +++ b/board/orangepi/orangepi-rk3399/genimage.cfg
>> @@ -26,14 +26,13 @@ image sdcard.img {
>>   	}
>>   
>>   	partition boot {
>> -		partition-type = 0xC
>> +		partition-type-uuid = F
>>   		bootable = "true"
>>   		image = "boot.vfat"
>>   		offset = 16M
>>   	}
>>   
>>   	partition rootfs {
>> -		partition-type = 0x83
> 
> Why don't you also switch this one to partition-type-uuid?

The replacement for this would be "partition-type-uuid = L", which is 
the default. I believe I saw a patch recently that removed those default 
entries, which is why I didn't include it.

Best,
Marcus

> 
> Regards,
> Yann E. MORIN.
> 
>>   		image = "rootfs.ext4"
>>   	}
>>   }
>> -- 
>> 2.25.1
>>
>> _______________________________________________
>> buildroot mailing list
>> buildroot@buildroot.org
>> https://lists.buildroot.org/mailman/listinfo/buildroot
> 
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v2 2/2] board/orangepi/orangepi-rk3399/genimage: fix partition types for gpt
  2022-02-17 21:44   ` Yann E. MORIN
  2022-02-17 21:47     ` Marcus Hoffmann
@ 2022-02-17 21:50     ` Giulio Benetti
  1 sibling, 0 replies; 10+ messages in thread
From: Giulio Benetti @ 2022-02-17 21:50 UTC (permalink / raw)
  To: Yann E. MORIN, Marcus Hoffmann; +Cc: buildroot, Suniel Mahesh

Hi Yann,

On 17/02/22 22:44, Yann E. MORIN wrote:
> Marcus, All,
> 
> On 2022-02-17 16:55 +0100, Marcus Hoffmann spake thusly:
>> Fixes the following error during image generation:
>>    ERROR: hdimage(sdcard.img): part boot: 'partition-type' is only valid
>>    for mbr and hybrid partition-table-type
>>
>> Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/2103784375
>>
>> Signed-off-by: Marcus Hoffmann <marcus.hoffmann@othermo.de>
>> ---
>>   board/orangepi/orangepi-rk3399/genimage.cfg | 3 +--
>>   1 file changed, 1 insertion(+), 2 deletions(-)
>>
>> diff --git a/board/orangepi/orangepi-rk3399/genimage.cfg b/board/orangepi/orangepi-rk3399/genimage.cfg
>> index c94e0bc7cc..a02166172f 100644
>> --- a/board/orangepi/orangepi-rk3399/genimage.cfg
>> +++ b/board/orangepi/orangepi-rk3399/genimage.cfg
>> @@ -26,14 +26,13 @@ image sdcard.img {
>>   	}
>>   
>>   	partition boot {
>> -		partition-type = 0xC
>> +		partition-type-uuid = F
>>   		bootable = "true"
>>   		image = "boot.vfat"
>>   		offset = 16M
>>   	}
>>   
>>   	partition rootfs {
>> -		partition-type = 0x83
> 
> Why don't you also switch this one to partition-type-uuid?

I've been asked by Arnout to drop L since it's the default:
https://lists.buildroot.org/pipermail/buildroot/2022-February/636945.html

I see both Thomas and Arnout seem to go for single letters intead of 
extended specific partition-type-uuid. That's why I didn't comment on 
this point that only removes partition-type.

Best regards
-- 
Giulio Benetti
Benetti Engineering sas

> 
> Regards,
> Yann E. MORIN.
> 
>>   		image = "rootfs.ext4"
>>   	}
>>   }
>> -- 
>> 2.25.1
>>
>> _______________________________________________
>> buildroot mailing list
>> buildroot@buildroot.org
>> https://lists.buildroot.org/mailman/listinfo/buildroot
> 

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v2 2/2] board/orangepi/orangepi-rk3399/genimage: fix partition types for gpt
  2022-02-17 15:55 ` [Buildroot] [PATCH v2 2/2] board/orangepi/orangepi-rk3399/genimage: fix partition types for gpt Marcus Hoffmann
  2022-02-17 15:58   ` Giulio Benetti
  2022-02-17 21:44   ` Yann E. MORIN
@ 2022-03-05 15:01   ` Arnout Vandecappelle
  2 siblings, 0 replies; 10+ messages in thread
From: Arnout Vandecappelle @ 2022-03-05 15:01 UTC (permalink / raw)
  To: Marcus Hoffmann, buildroot; +Cc: Suniel Mahesh



On 17/02/2022 16:55, Marcus Hoffmann wrote:
> Fixes the following error during image generation:
>    ERROR: hdimage(sdcard.img): part boot: 'partition-type' is only valid
>    for mbr and hybrid partition-table-type
> 
> Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/2103784375
> 
> Signed-off-by: Marcus Hoffmann <marcus.hoffmann@othermo.de>

  Applied to master, thanks.

  Regards,
  Arnout

> ---
>   board/orangepi/orangepi-rk3399/genimage.cfg | 3 +--
>   1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/board/orangepi/orangepi-rk3399/genimage.cfg b/board/orangepi/orangepi-rk3399/genimage.cfg
> index c94e0bc7cc..a02166172f 100644
> --- a/board/orangepi/orangepi-rk3399/genimage.cfg
> +++ b/board/orangepi/orangepi-rk3399/genimage.cfg
> @@ -26,14 +26,13 @@ image sdcard.img {
>   	}
>   
>   	partition boot {
> -		partition-type = 0xC
> +		partition-type-uuid = F
>   		bootable = "true"
>   		image = "boot.vfat"
>   		offset = 16M
>   	}
>   
>   	partition rootfs {
> -		partition-type = 0x83
>   		image = "rootfs.ext4"
>   	}
>   }
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2022-03-05 15:02 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-02-17 15:55 [Buildroot] [PATCH v2 0/2] defconfig fixes Marcus Hoffmann
2022-02-17 15:55 ` [Buildroot] [PATCH v2 1/2] configs/friendlyarm_nanopi_r2s_defconfig: uboot needs openssl Marcus Hoffmann
2022-02-17 15:58   ` Giulio Benetti
2022-02-17 21:43   ` Yann E. MORIN
2022-02-17 15:55 ` [Buildroot] [PATCH v2 2/2] board/orangepi/orangepi-rk3399/genimage: fix partition types for gpt Marcus Hoffmann
2022-02-17 15:58   ` Giulio Benetti
2022-02-17 21:44   ` Yann E. MORIN
2022-02-17 21:47     ` Marcus Hoffmann
2022-02-17 21:50     ` Giulio Benetti
2022-03-05 15:01   ` Arnout Vandecappelle

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.