All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 0/8] configs: defconfigs for Atmel boards
@ 2015-04-30 12:51 Alexandre Belloni
  2015-04-30 12:51 ` [Buildroot] [PATCH 1/8] configs: update at91sam9g45m10ek defconfig Alexandre Belloni
                   ` (8 more replies)
  0 siblings, 9 replies; 20+ messages in thread
From: Alexandre Belloni @ 2015-04-30 12:51 UTC (permalink / raw)
  To: buildroot

Hi,

This series updates and adds defconfigs for the recent(ish) atmel boards. They
use Atmel's u-boot and kernel tree and are meant to be flashed on the NAND
flash.

Alexandre Belloni (8):
  configs: update at91sam9g45m10ek defconfig
  configs: add defconfig for Atmel at91sam9rlek
  configs: add defconfig for Atmel at91sam9x5ek
  configs: add defconfig for Atmel sama5d3xek
  configs: add defconfig for Atmel sama5d4ek
  configs: add defconfig for Atmel sama4d4 Xplained Ultra
  configs: add defconfig for Atmel sama5d3 Xplained
  configs: rename atmel_xplained_defconfig

 configs/at91sam9g45m10ek_defconfig                 | 19 +++++++++++++-----
 configs/at91sam9rlek_defconfig                     | 18 +++++++++++++++++
 configs/at91sam9x5ek_defconfig                     | 18 +++++++++++++++++
 configs/atmel_sama5d3_xplained_defconfig           | 22 +++++++++++++++++++++
 ...config => atmel_sama5d3_xplained_mmc_defconfig} |  0
 configs/atmel_sama5d3xek_defconfig                 | 22 +++++++++++++++++++++
 configs/atmel_sama5d4_xplained_defconfig           | 23 ++++++++++++++++++++++
 configs/atmel_sama5d4ek_defconfig                  | 23 ++++++++++++++++++++++
 8 files changed, 140 insertions(+), 5 deletions(-)
 create mode 100644 configs/at91sam9rlek_defconfig
 create mode 100644 configs/at91sam9x5ek_defconfig
 create mode 100644 configs/atmel_sama5d3_xplained_defconfig
 rename configs/{atmel_xplained_defconfig => atmel_sama5d3_xplained_mmc_defconfig} (100%)
 create mode 100644 configs/atmel_sama5d3xek_defconfig
 create mode 100644 configs/atmel_sama5d4_xplained_defconfig
 create mode 100644 configs/atmel_sama5d4ek_defconfig

-- 
2.1.4

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

* [Buildroot] [PATCH 1/8] configs: update at91sam9g45m10ek defconfig
  2015-04-30 12:51 [Buildroot] [PATCH 0/8] configs: defconfigs for Atmel boards Alexandre Belloni
@ 2015-04-30 12:51 ` Alexandre Belloni
  2015-04-30 12:51 ` [Buildroot] [PATCH 2/8] configs: add defconfig for Atmel at91sam9rlek Alexandre Belloni
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 20+ messages in thread
From: Alexandre Belloni @ 2015-04-30 12:51 UTC (permalink / raw)
  To: buildroot

Use kernel (3.18) and u-boot (2015.01) from Atmel's repositories.

Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
---
 configs/at91sam9g45m10ek_defconfig | 19 ++++++++++++++-----
 1 file changed, 14 insertions(+), 5 deletions(-)

diff --git a/configs/at91sam9g45m10ek_defconfig b/configs/at91sam9g45m10ek_defconfig
index c958859df1a3..deaa193a5372 100644
--- a/configs/at91sam9g45m10ek_defconfig
+++ b/configs/at91sam9g45m10ek_defconfig
@@ -1,9 +1,18 @@
 BR2_arm=y
 BR2_arm926t=y
-BR2_PACKAGE_HOST_SAM_BA=y
-BR2_TARGET_AT91BOOTSTRAP=y
-BR2_TARGET_AT91BOOTSTRAP_BOARD="at91sam9m10g45ek"
+BR2_LINUX_KERNEL=y
+BR2_LINUX_KERNEL_CUSTOM_GIT=y
+BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://github.com/linux4sam/linux-at91.git"
+BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="linux-3.18-at91"
+BR2_LINUX_KERNEL_DEFCONFIG="at91_dt"
+BR2_LINUX_KERNEL_ZIMAGE=y
+BR2_LINUX_KERNEL_DTS_SUPPORT=y
+BR2_LINUX_KERNEL_INTREE_DTS_NAME="at91sam9m10g45ek"
+BR2_TARGET_AT91BOOTSTRAP3=y
+BR2_TARGET_AT91BOOTSTRAP3_DEFCONFIG="at91sam9m10g45eknf_uboot"
 BR2_TARGET_UBOOT=y
 BR2_TARGET_UBOOT_BOARDNAME="at91sam9m10g45ek_nandflash"
-BR2_LINUX_KERNEL=y
-BR2_LINUX_KERNEL_DEFCONFIG="at91sam9g45"
+BR2_TARGET_UBOOT_CUSTOM_GIT=y
+BR2_TARGET_UBOOT_CUSTOM_REPO_URL="git://github.com/linux4sam/u-boot-at91.git"
+BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="u-boot-2015.01-at91"
+BR2_PACKAGE_HOST_SAM_BA=y
-- 
2.1.4

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

* [Buildroot] [PATCH 2/8] configs: add defconfig for Atmel at91sam9rlek
  2015-04-30 12:51 [Buildroot] [PATCH 0/8] configs: defconfigs for Atmel boards Alexandre Belloni
  2015-04-30 12:51 ` [Buildroot] [PATCH 1/8] configs: update at91sam9g45m10ek defconfig Alexandre Belloni
@ 2015-04-30 12:51 ` Alexandre Belloni
  2015-04-30 12:51 ` [Buildroot] [PATCH 3/8] configs: add defconfig for Atmel at91sam9x5ek Alexandre Belloni
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 20+ messages in thread
From: Alexandre Belloni @ 2015-04-30 12:51 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
---
 configs/at91sam9rlek_defconfig | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 configs/at91sam9rlek_defconfig

diff --git a/configs/at91sam9rlek_defconfig b/configs/at91sam9rlek_defconfig
new file mode 100644
index 000000000000..369111a852b2
--- /dev/null
+++ b/configs/at91sam9rlek_defconfig
@@ -0,0 +1,18 @@
+BR2_arm=y
+BR2_arm926t=y
+BR2_LINUX_KERNEL=y
+BR2_LINUX_KERNEL_CUSTOM_GIT=y
+BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://github.com/linux4sam/linux-at91.git"
+BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="linux-3.18-at91"
+BR2_LINUX_KERNEL_DEFCONFIG="at91_dt"
+BR2_LINUX_KERNEL_ZIMAGE=y
+BR2_LINUX_KERNEL_DTS_SUPPORT=y
+BR2_LINUX_KERNEL_INTREE_DTS_NAME="at91sam9rlek"
+BR2_TARGET_AT91BOOTSTRAP3=y
+BR2_TARGET_AT91BOOTSTRAP3_DEFCONFIG="at91sam9rleknf_uboot"
+BR2_TARGET_UBOOT=y
+BR2_TARGET_UBOOT_BOARDNAME="at91sam9rlek_nandflash"
+BR2_TARGET_UBOOT_CUSTOM_GIT=y
+BR2_TARGET_UBOOT_CUSTOM_REPO_URL="git://github.com/linux4sam/u-boot-at91.git"
+BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="u-boot-2015.01-at91"
+BR2_PACKAGE_HOST_SAM_BA=y
-- 
2.1.4

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

* [Buildroot] [PATCH 3/8] configs: add defconfig for Atmel at91sam9x5ek
  2015-04-30 12:51 [Buildroot] [PATCH 0/8] configs: defconfigs for Atmel boards Alexandre Belloni
  2015-04-30 12:51 ` [Buildroot] [PATCH 1/8] configs: update at91sam9g45m10ek defconfig Alexandre Belloni
  2015-04-30 12:51 ` [Buildroot] [PATCH 2/8] configs: add defconfig for Atmel at91sam9rlek Alexandre Belloni
@ 2015-04-30 12:51 ` Alexandre Belloni
  2015-04-30 12:51 ` [Buildroot] [PATCH 4/8] configs: add defconfig for Atmel sama5d3xek Alexandre Belloni
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 20+ messages in thread
From: Alexandre Belloni @ 2015-04-30 12:51 UTC (permalink / raw)
  To: buildroot

This supports:
 - at91sam9g15ek
 - at91sam9g25ek
 - at91sam9g35ek
 - at91sam9x25ek
 - at91sam9x35ek

Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
---
 configs/at91sam9x5ek_defconfig | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 configs/at91sam9x5ek_defconfig

diff --git a/configs/at91sam9x5ek_defconfig b/configs/at91sam9x5ek_defconfig
new file mode 100644
index 000000000000..461f45d87b3d
--- /dev/null
+++ b/configs/at91sam9x5ek_defconfig
@@ -0,0 +1,18 @@
+BR2_arm=y
+BR2_arm926t=y
+BR2_LINUX_KERNEL=y
+BR2_LINUX_KERNEL_CUSTOM_GIT=y
+BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://github.com/linux4sam/linux-at91.git"
+BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="linux-3.18-at91"
+BR2_LINUX_KERNEL_DEFCONFIG="at91_dt"
+BR2_LINUX_KERNEL_ZIMAGE=y
+BR2_LINUX_KERNEL_DTS_SUPPORT=y
+BR2_LINUX_KERNEL_INTREE_DTS_NAME="at91sam9g15ek at91sam9g25ek at91sam9g35ek at91sam9x25ek at91sam9x35ek"
+BR2_TARGET_AT91BOOTSTRAP3=y
+BR2_TARGET_AT91BOOTSTRAP3_DEFCONFIG="at91sam9x5eknf_uboot"
+BR2_TARGET_UBOOT=y
+BR2_TARGET_UBOOT_BOARDNAME="at91sam9x5ek_nandflash"
+BR2_TARGET_UBOOT_CUSTOM_GIT=y
+BR2_TARGET_UBOOT_CUSTOM_REPO_URL="git://github.com/linux4sam/u-boot-at91.git"
+BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="u-boot-2015.01-at91"
+BR2_PACKAGE_HOST_SAM_BA=y
-- 
2.1.4

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

* [Buildroot] [PATCH 4/8] configs: add defconfig for Atmel sama5d3xek
  2015-04-30 12:51 [Buildroot] [PATCH 0/8] configs: defconfigs for Atmel boards Alexandre Belloni
                   ` (2 preceding siblings ...)
  2015-04-30 12:51 ` [Buildroot] [PATCH 3/8] configs: add defconfig for Atmel at91sam9x5ek Alexandre Belloni
@ 2015-04-30 12:51 ` Alexandre Belloni
  2015-04-30 12:51 ` [Buildroot] [PATCH 5/8] configs: add defconfig for Atmel sama5d4ek Alexandre Belloni
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 20+ messages in thread
From: Alexandre Belloni @ 2015-04-30 12:51 UTC (permalink / raw)
  To: buildroot

This supports:
 - sama5d31ek
 - sama5d33ek
 - sama5d34ek
 - sama5d35ek
 - sama5d36ek

with or without the PDA4 or PDA7 screens.

Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
---
 configs/atmel_sama5d3xek_defconfig | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 configs/atmel_sama5d3xek_defconfig

diff --git a/configs/atmel_sama5d3xek_defconfig b/configs/atmel_sama5d3xek_defconfig
new file mode 100644
index 000000000000..3ae9f831cd44
--- /dev/null
+++ b/configs/atmel_sama5d3xek_defconfig
@@ -0,0 +1,22 @@
+BR2_arm=y
+BR2_cortex_a5=y
+BR2_ARM_EABIHF=y
+BR2_ARM_FPU_VFPV4D16=y
+BR2_ARM_INSTRUCTIONS_THUMB2=y
+BR2_LINUX_KERNEL=y
+BR2_LINUX_KERNEL_CUSTOM_GIT=y
+BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://github.com/linux4sam/linux-at91.git"
+BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="linux-3.18-at91"
+BR2_LINUX_KERNEL_DEFCONFIG="sama5"
+BR2_LINUX_KERNEL_ZIMAGE=y
+BR2_LINUX_KERNEL_DTS_SUPPORT=y
+BR2_LINUX_KERNEL_INTREE_DTS_NAME="sama5d31ek sama5d31ek_pda4 sama5d31ek_pda7 sama5d31ek_revc sama5d31ek_revc_pda4 sama5d31ek_revc_pda7 sama5d33ek sama5d33ek_pda4 sama5d33ek_pda7 sama5d33ek_revc sama5d33ek_revc_pda4 sama5d33ek_revc_pda7 sama5d34ek sama5d34ek_pda4 sama5d34ek_pda7 sama5d34ek_revc sama5d34ek_revc_pda4 sama5d34ek_revc_pda7 sama5d35ek sama5d35ek_revc sama5d36ek sama5d36ek_pda4 sama5d36ek_pda7 sama5d36ek_revc sama5d36ek_revc_pda4 sama5d36ek_revc_pda7"
+BR2_TARGET_AT91BOOTSTRAP3=y
+BR2_TARGET_AT91BOOTSTRAP3_DEFCONFIG="sama5d3xeknf_uboot"
+BR2_TARGET_UBOOT=y
+BR2_TARGET_UBOOT_BOARDNAME="sama5d3xek_nandflash"
+BR2_TARGET_UBOOT_CUSTOM_GIT=y
+BR2_TARGET_UBOOT_CUSTOM_REPO_URL="git://github.com/linux4sam/u-boot-at91.git"
+BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="u-boot-2015.01-at91"
+BR2_TARGET_UBOOT_SPL=y
+BR2_PACKAGE_HOST_SAM_BA=y
-- 
2.1.4

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

* [Buildroot] [PATCH 5/8] configs: add defconfig for Atmel sama5d4ek
  2015-04-30 12:51 [Buildroot] [PATCH 0/8] configs: defconfigs for Atmel boards Alexandre Belloni
                   ` (3 preceding siblings ...)
  2015-04-30 12:51 ` [Buildroot] [PATCH 4/8] configs: add defconfig for Atmel sama5d3xek Alexandre Belloni
@ 2015-04-30 12:51 ` Alexandre Belloni
  2015-04-30 12:51 ` [Buildroot] [PATCH 6/8] configs: add defconfig for Atmel sama4d4 Xplained Ultra Alexandre Belloni
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 20+ messages in thread
From: Alexandre Belloni @ 2015-04-30 12:51 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
---
 configs/atmel_sama5d4ek_defconfig | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 configs/atmel_sama5d4ek_defconfig

diff --git a/configs/atmel_sama5d4ek_defconfig b/configs/atmel_sama5d4ek_defconfig
new file mode 100644
index 000000000000..adc06c20280e
--- /dev/null
+++ b/configs/atmel_sama5d4ek_defconfig
@@ -0,0 +1,23 @@
+BR2_arm=y
+BR2_cortex_a5=y
+BR2_ARM_EABIHF=y
+BR2_ARM_ENABLE_NEON=y
+BR2_ARM_FPU_VFPV4D16=y
+BR2_ARM_INSTRUCTIONS_THUMB2=y
+BR2_LINUX_KERNEL=y
+BR2_LINUX_KERNEL_CUSTOM_GIT=y
+BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://github.com/linux4sam/linux-at91.git"
+BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="linux-3.18-at91"
+BR2_LINUX_KERNEL_DEFCONFIG="sama5"
+BR2_LINUX_KERNEL_ZIMAGE=y
+BR2_LINUX_KERNEL_DTS_SUPPORT=y
+BR2_LINUX_KERNEL_INTREE_DTS_NAME="at91-sama5d4_xplained"
+BR2_TARGET_AT91BOOTSTRAP3=y
+BR2_TARGET_AT91BOOTSTRAP3_DEFCONFIG="sama5d4eknf_uboot_secure"
+BR2_TARGET_UBOOT=y
+BR2_TARGET_UBOOT_BOARDNAME="sama5d4ek_nandflash"
+BR2_TARGET_UBOOT_CUSTOM_GIT=y
+BR2_TARGET_UBOOT_CUSTOM_REPO_URL="git://github.com/linux4sam/u-boot-at91.git"
+BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="u-boot-2015.01-at91"
+BR2_TARGET_UBOOT_SPL=y
+BR2_PACKAGE_HOST_SAM_BA=y
-- 
2.1.4

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

* [Buildroot] [PATCH 6/8] configs: add defconfig for Atmel sama4d4 Xplained Ultra
  2015-04-30 12:51 [Buildroot] [PATCH 0/8] configs: defconfigs for Atmel boards Alexandre Belloni
                   ` (4 preceding siblings ...)
  2015-04-30 12:51 ` [Buildroot] [PATCH 5/8] configs: add defconfig for Atmel sama5d4ek Alexandre Belloni
@ 2015-04-30 12:51 ` Alexandre Belloni
  2015-05-01  7:35   ` Thomas Petazzoni
  2015-04-30 12:51 ` [Buildroot] [PATCH 7/8] configs: add defconfig for Atmel sama5d3 Xplained Alexandre Belloni
                   ` (2 subsequent siblings)
  8 siblings, 1 reply; 20+ messages in thread
From: Alexandre Belloni @ 2015-04-30 12:51 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
---
 configs/atmel_sama5d4_xplained_defconfig | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 configs/atmel_sama5d4_xplained_defconfig

diff --git a/configs/atmel_sama5d4_xplained_defconfig b/configs/atmel_sama5d4_xplained_defconfig
new file mode 100644
index 000000000000..819ce028ef9b
--- /dev/null
+++ b/configs/atmel_sama5d4_xplained_defconfig
@@ -0,0 +1,23 @@
+BR2_arm=y
+BR2_cortex_a5=y
+BR2_ARM_EABIHF=y
+BR2_ARM_ENABLE_NEON=y
+BR2_ARM_FPU_VFPV4D16=y
+BR2_ARM_INSTRUCTIONS_THUMB2=y
+BR2_LINUX_KERNEL=y
+BR2_LINUX_KERNEL_CUSTOM_GIT=y
+BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://github.com/linux4sam/linux-at91.git"
+BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="linux-3.18-at91"
+BR2_LINUX_KERNEL_DEFCONFIG="sama5"
+BR2_LINUX_KERNEL_ZIMAGE=y
+BR2_LINUX_KERNEL_DTS_SUPPORT=y
+BR2_LINUX_KERNEL_INTREE_DTS_NAME="at91-sama5d4_xplained"
+BR2_TARGET_AT91BOOTSTRAP3=y
+BR2_TARGET_AT91BOOTSTRAP3_DEFCONFIG="sama5d4_xplainednf_uboot_secure"
+BR2_TARGET_UBOOT=y
+BR2_TARGET_UBOOT_BOARDNAME="sama5d4_xplained_nandflash"
+BR2_TARGET_UBOOT_CUSTOM_GIT=y
+BR2_TARGET_UBOOT_CUSTOM_REPO_URL="git://github.com/linux4sam/u-boot-at91.git"
+BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="u-boot-2015.01-at91"
+BR2_TARGET_UBOOT_SPL=y
+BR2_PACKAGE_HOST_SAM_BA=y
-- 
2.1.4

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

* [Buildroot] [PATCH 7/8] configs: add defconfig for Atmel sama5d3 Xplained
  2015-04-30 12:51 [Buildroot] [PATCH 0/8] configs: defconfigs for Atmel boards Alexandre Belloni
                   ` (5 preceding siblings ...)
  2015-04-30 12:51 ` [Buildroot] [PATCH 6/8] configs: add defconfig for Atmel sama4d4 Xplained Ultra Alexandre Belloni
@ 2015-04-30 12:51 ` Alexandre Belloni
  2015-04-30 14:46   ` Ryan Barnett
  2015-04-30 12:51 ` [Buildroot] [PATCH 8/8] configs: rename atmel_xplained_defconfig Alexandre Belloni
  2015-04-30 14:33 ` [Buildroot] [PATCH 0/8] configs: defconfigs for Atmel boards Ryan Barnett
  8 siblings, 1 reply; 20+ messages in thread
From: Alexandre Belloni @ 2015-04-30 12:51 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
---
 configs/atmel_sama5d3_xplained_defconfig | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 configs/atmel_sama5d3_xplained_defconfig

diff --git a/configs/atmel_sama5d3_xplained_defconfig b/configs/atmel_sama5d3_xplained_defconfig
new file mode 100644
index 000000000000..ba3c9cd664bd
--- /dev/null
+++ b/configs/atmel_sama5d3_xplained_defconfig
@@ -0,0 +1,22 @@
+BR2_arm=y
+BR2_cortex_a5=y
+BR2_ARM_EABIHF=y
+BR2_ARM_FPU_VFPV4D16=y
+BR2_ARM_INSTRUCTIONS_THUMB2=y
+BR2_LINUX_KERNEL=y
+BR2_LINUX_KERNEL_CUSTOM_GIT=y
+BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://github.com/linux4sam/linux-at91.git"
+BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="linux-3.18-at91"
+BR2_LINUX_KERNEL_DEFCONFIG="sama5"
+BR2_LINUX_KERNEL_ZIMAGE=y
+BR2_LINUX_KERNEL_DTS_SUPPORT=y
+BR2_LINUX_KERNEL_INTREE_DTS_NAME="at91-sama5d3_xplained at91-sama5d3_xplained_pda4 at91-sama5d3_xplained_pda7"
+BR2_TARGET_AT91BOOTSTRAP3=y
+BR2_TARGET_AT91BOOTSTRAP3_DEFCONFIG="sama5d3_xplainednf_uboot"
+BR2_TARGET_UBOOT=y
+BR2_TARGET_UBOOT_BOARDNAME="sama5d3_xplained_nandflash"
+BR2_TARGET_UBOOT_CUSTOM_GIT=y
+BR2_TARGET_UBOOT_CUSTOM_REPO_URL="git://github.com/linux4sam/u-boot-at91.git"
+BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="u-boot-2015.01-at91"
+BR2_TARGET_UBOOT_SPL=y
+BR2_PACKAGE_HOST_SAM_BA=y
-- 
2.1.4

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

* [Buildroot] [PATCH 8/8] configs: rename atmel_xplained_defconfig
  2015-04-30 12:51 [Buildroot] [PATCH 0/8] configs: defconfigs for Atmel boards Alexandre Belloni
                   ` (6 preceding siblings ...)
  2015-04-30 12:51 ` [Buildroot] [PATCH 7/8] configs: add defconfig for Atmel sama5d3 Xplained Alexandre Belloni
@ 2015-04-30 12:51 ` Alexandre Belloni
  2015-04-30 14:36   ` Ryan Barnett
  2015-04-30 14:33 ` [Buildroot] [PATCH 0/8] configs: defconfigs for Atmel boards Ryan Barnett
  8 siblings, 1 reply; 20+ messages in thread
From: Alexandre Belloni @ 2015-04-30 12:51 UTC (permalink / raw)
  To: buildroot

For consistency, rename atmel_xplained_defconfig to
atmel_sama5d3_xplained_mmc_defconfig as this configuration supports
booting the sama5d3 Xplained with an MMC card (as opposed to the NAND
flash).

Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
---
 .../{atmel_xplained_defconfig => atmel_sama5d3_xplained_mmc_defconfig}    | 0
 1 file changed, 0 insertions(+), 0 deletions(-)
 rename configs/{atmel_xplained_defconfig => atmel_sama5d3_xplained_mmc_defconfig} (100%)

diff --git a/configs/atmel_xplained_defconfig b/configs/atmel_sama5d3_xplained_mmc_defconfig
similarity index 100%
rename from configs/atmel_xplained_defconfig
rename to configs/atmel_sama5d3_xplained_mmc_defconfig
-- 
2.1.4

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

* [Buildroot] [PATCH 0/8] configs: defconfigs for Atmel boards
  2015-04-30 12:51 [Buildroot] [PATCH 0/8] configs: defconfigs for Atmel boards Alexandre Belloni
                   ` (7 preceding siblings ...)
  2015-04-30 12:51 ` [Buildroot] [PATCH 8/8] configs: rename atmel_xplained_defconfig Alexandre Belloni
@ 2015-04-30 14:33 ` Ryan Barnett
  2015-04-30 14:40   ` Alexandre Belloni
  2015-05-01  7:34   ` Thomas Petazzoni
  8 siblings, 2 replies; 20+ messages in thread
From: Ryan Barnett @ 2015-04-30 14:33 UTC (permalink / raw)
  To: buildroot

Hi Alexandre,

On Thu, Apr 30, 2015 at 7:51 AM, Alexandre Belloni
<alexandre.belloni@free-electrons.com> wrote:
> Hi,
>
> This series updates and adds defconfigs for the recent(ish) atmel boards. They
> use Atmel's u-boot and kernel tree and are meant to be flashed on the NAND
> flash.
>
> Alexandre Belloni (8):
>   configs: update at91sam9g45m10ek defconfig
>   configs: add defconfig for Atmel at91sam9rlek
>   configs: add defconfig for Atmel at91sam9x5ek
>   configs: add defconfig for Atmel sama5d3xek
>   configs: add defconfig for Atmel sama5d4ek
>   configs: add defconfig for Atmel sama4d4 Xplained Ultra
>   configs: add defconfig for Atmel sama5d3 Xplained
>   configs: rename atmel_xplained_defconfig
>
>  configs/at91sam9g45m10ek_defconfig                 | 19 +++++++++++++-----
>  configs/at91sam9rlek_defconfig                     | 18 +++++++++++++++++
>  configs/at91sam9x5ek_defconfig                     | 18 +++++++++++++++++
>  configs/atmel_sama5d3_xplained_defconfig           | 22 +++++++++++++++++++++
>  ...config => atmel_sama5d3_xplained_mmc_defconfig} |  0
>  configs/atmel_sama5d3xek_defconfig                 | 22 +++++++++++++++++++++
>  configs/atmel_sama5d4_xplained_defconfig           | 23 ++++++++++++++++++++++
>  configs/atmel_sama5d4ek_defconfig                  | 23 ++++++++++++++++++++++
>  8 files changed, 140 insertions(+), 5 deletions(-)
>  create mode 100644 configs/at91sam9rlek_defconfig
>  create mode 100644 configs/at91sam9x5ek_defconfig
>  create mode 100644 configs/atmel_sama5d3_xplained_defconfig
>  rename configs/{atmel_xplained_defconfig => atmel_sama5d3_xplained_mmc_defconfig} (100%)
>  create mode 100644 configs/atmel_sama5d3xek_defconfig
>  create mode 100644 configs/atmel_sama5d4_xplained_defconfig
>  create mode 100644 configs/atmel_sama5d4ek_defconfig

Since you are moving all of the Atmel boards to use NAND boot
configuration, it would be good to have a 'README' that explains how
to load the boards utilizing the SAM-BA tool (it appears all the NAND
configurations are using this). At minimum it would be to point to
Linux4SAM wiki for loading instructions.

Thoughts?

Thanks,
-Ryan

-- 
Ryan Barnett / Sr Software Engineer
Airborne Information Systems / Security Systems and Software
MS 131-100, C Ave NE, Cedar Rapids, IA, 52498, USA
ryan.barnett at rockwellcollins.com
www.rockwellcollins.com

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

* [Buildroot] [PATCH 8/8] configs: rename atmel_xplained_defconfig
  2015-04-30 12:51 ` [Buildroot] [PATCH 8/8] configs: rename atmel_xplained_defconfig Alexandre Belloni
@ 2015-04-30 14:36   ` Ryan Barnett
  2015-04-30 14:40     ` Alexandre Belloni
  0 siblings, 1 reply; 20+ messages in thread
From: Ryan Barnett @ 2015-04-30 14:36 UTC (permalink / raw)
  To: buildroot

Alexandre,

On Thu, Apr 30, 2015 at 7:51 AM, Alexandre Belloni
<alexandre.belloni@free-electrons.com> wrote:
> For consistency, rename atmel_xplained_defconfig to
> atmel_sama5d3_xplained_mmc_defconfig as this configuration supports
> booting the sama5d3 Xplained with an MMC card (as opposed to the NAND
> flash).
>
> Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
> ---
>  .../{atmel_xplained_defconfig => atmel_sama5d3_xplained_mmc_defconfig}    | 0
>  1 file changed, 0 insertions(+), 0 deletions(-)
>  rename configs/{atmel_xplained_defconfig => atmel_sama5d3_xplained_mmc_defconfig} (100%)

I believe the readme.txt under board/atmel/xplained should be updated
to say atmel_sama5d3_xplained_mmc_defconfig instead of
atmel_xplained_defconfig.

Thanks
-Ryan

>
> diff --git a/configs/atmel_xplained_defconfig b/configs/atmel_sama5d3_xplained_mmc_defconfig
> similarity index 100%
> rename from configs/atmel_xplained_defconfig
> rename to configs/atmel_sama5d3_xplained_mmc_defconfig



-- 
Ryan Barnett / Sr Software Engineer
Airborne Information Systems / Security Systems and Software
MS 131-100, C Ave NE, Cedar Rapids, IA, 52498, USA
ryan.barnett at rockwellcollins.com
www.rockwellcollins.com

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

* [Buildroot] [PATCH 0/8] configs: defconfigs for Atmel boards
  2015-04-30 14:33 ` [Buildroot] [PATCH 0/8] configs: defconfigs for Atmel boards Ryan Barnett
@ 2015-04-30 14:40   ` Alexandre Belloni
  2015-05-01  7:34   ` Thomas Petazzoni
  1 sibling, 0 replies; 20+ messages in thread
From: Alexandre Belloni @ 2015-04-30 14:40 UTC (permalink / raw)
  To: buildroot

On 30/04/2015 at 09:33:50 -0500, Ryan Barnett wrote :
> Since you are moving all of the Atmel boards to use NAND boot
> configuration, it would be good to have a 'README' that explains how
> to load the boards utilizing the SAM-BA tool (it appears all the NAND
> configurations are using this). At minimum it would be to point to
> Linux4SAM wiki for loading instructions.
> 
> Thoughts?
> 

Sure, I'm actually planning to provide the tcl scripts to use with
SAM-BA to help people load the generated images on their board.


-- 
Alexandre Belloni, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH 8/8] configs: rename atmel_xplained_defconfig
  2015-04-30 14:36   ` Ryan Barnett
@ 2015-04-30 14:40     ` Alexandre Belloni
  0 siblings, 0 replies; 20+ messages in thread
From: Alexandre Belloni @ 2015-04-30 14:40 UTC (permalink / raw)
  To: buildroot

On 30/04/2015 at 09:36:14 -0500, Ryan Barnett wrote :
> Alexandre,
> 
> On Thu, Apr 30, 2015 at 7:51 AM, Alexandre Belloni
> <alexandre.belloni@free-electrons.com> wrote:
> > For consistency, rename atmel_xplained_defconfig to
> > atmel_sama5d3_xplained_mmc_defconfig as this configuration supports
> > booting the sama5d3 Xplained with an MMC card (as opposed to the NAND
> > flash).
> >
> > Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
> > ---
> >  .../{atmel_xplained_defconfig => atmel_sama5d3_xplained_mmc_defconfig}    | 0
> >  1 file changed, 0 insertions(+), 0 deletions(-)
> >  rename configs/{atmel_xplained_defconfig => atmel_sama5d3_xplained_mmc_defconfig} (100%)
> 
> I believe the readme.txt under board/atmel/xplained should be updated
> to say atmel_sama5d3_xplained_mmc_defconfig instead of
> atmel_xplained_defconfig.
> 

Indeed, I'll update it.


-- 
Alexandre Belloni, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH 7/8] configs: add defconfig for Atmel sama5d3 Xplained
  2015-04-30 12:51 ` [Buildroot] [PATCH 7/8] configs: add defconfig for Atmel sama5d3 Xplained Alexandre Belloni
@ 2015-04-30 14:46   ` Ryan Barnett
  2015-04-30 15:14     ` Alexandre Belloni
  0 siblings, 1 reply; 20+ messages in thread
From: Ryan Barnett @ 2015-04-30 14:46 UTC (permalink / raw)
  To: buildroot

Alexandre,

On Thu, Apr 30, 2015 at 7:51 AM, Alexandre Belloni
<alexandre.belloni@free-electrons.com> wrote:
> Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
> ---
>  configs/atmel_sama5d3_xplained_defconfig | 22 ++++++++++++++++++++++
>  1 file changed, 22 insertions(+)
>  create mode 100644 configs/atmel_sama5d3_xplained_defconfig
>
> diff --git a/configs/atmel_sama5d3_xplained_defconfig b/configs/atmel_sama5d3_xplained_defconfig
> new file mode 100644
> index 000000000000..ba3c9cd664bd
> --- /dev/null
> +++ b/configs/atmel_sama5d3_xplained_defconfig
> @@ -0,0 +1,22 @@
> +BR2_arm=y
> +BR2_cortex_a5=y
> +BR2_ARM_EABIHF=y
> +BR2_ARM_FPU_VFPV4D16=y
> +BR2_ARM_INSTRUCTIONS_THUMB2=y
> +BR2_LINUX_KERNEL=y
> +BR2_LINUX_KERNEL_CUSTOM_GIT=y
> +BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://github.com/linux4sam/linux-at91.git"
> +BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="linux-3.18-at91"

'linux-3.18-at91' appears to be a branch which means that it could be
updated and break this config?

I believe in order to ensure that a build is reproducible for everyone
that this should be a tag or commit SHA. This would also apply to all
your other new NAND configurations for the Atmel boards.

Thanks,
-Ryan

> +BR2_LINUX_KERNEL_DEFCONFIG="sama5"
> +BR2_LINUX_KERNEL_ZIMAGE=y
> +BR2_LINUX_KERNEL_DTS_SUPPORT=y
> +BR2_LINUX_KERNEL_INTREE_DTS_NAME="at91-sama5d3_xplained at91-sama5d3_xplained_pda4 at91-sama5d3_xplained_pda7"
> +BR2_TARGET_AT91BOOTSTRAP3=y
> +BR2_TARGET_AT91BOOTSTRAP3_DEFCONFIG="sama5d3_xplainednf_uboot"
> +BR2_TARGET_UBOOT=y
> +BR2_TARGET_UBOOT_BOARDNAME="sama5d3_xplained_nandflash"
> +BR2_TARGET_UBOOT_CUSTOM_GIT=y
> +BR2_TARGET_UBOOT_CUSTOM_REPO_URL="git://github.com/linux4sam/u-boot-at91.git"
> +BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="u-boot-2015.01-at91"
> +BR2_TARGET_UBOOT_SPL=y
> +BR2_PACKAGE_HOST_SAM_BA=y

-- 
Ryan Barnett / Sr Software Engineer
Airborne Information Systems / Security Systems and Software
MS 131-100, C Ave NE, Cedar Rapids, IA, 52498, USA
ryan.barnett at rockwellcollins.com
www.rockwellcollins.com

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

* [Buildroot] [PATCH 7/8] configs: add defconfig for Atmel sama5d3 Xplained
  2015-04-30 14:46   ` Ryan Barnett
@ 2015-04-30 15:14     ` Alexandre Belloni
  2015-04-30 15:16       ` Ryan Barnett
  2015-05-01  7:33       ` Thomas Petazzoni
  0 siblings, 2 replies; 20+ messages in thread
From: Alexandre Belloni @ 2015-04-30 15:14 UTC (permalink / raw)
  To: buildroot

On 30/04/2015 at 09:46:44 -0500, Ryan Barnett wrote :
> Alexandre,
> 
> On Thu, Apr 30, 2015 at 7:51 AM, Alexandre Belloni
> <alexandre.belloni@free-electrons.com> wrote:
> > Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
> > ---
> >  configs/atmel_sama5d3_xplained_defconfig | 22 ++++++++++++++++++++++
> >  1 file changed, 22 insertions(+)
> >  create mode 100644 configs/atmel_sama5d3_xplained_defconfig
> >
> > diff --git a/configs/atmel_sama5d3_xplained_defconfig b/configs/atmel_sama5d3_xplained_defconfig
> > new file mode 100644
> > index 000000000000..ba3c9cd664bd
> > --- /dev/null
> > +++ b/configs/atmel_sama5d3_xplained_defconfig
> > @@ -0,0 +1,22 @@
> > +BR2_arm=y
> > +BR2_cortex_a5=y
> > +BR2_ARM_EABIHF=y
> > +BR2_ARM_FPU_VFPV4D16=y
> > +BR2_ARM_INSTRUCTIONS_THUMB2=y
> > +BR2_LINUX_KERNEL=y
> > +BR2_LINUX_KERNEL_CUSTOM_GIT=y
> > +BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://github.com/linux4sam/linux-at91.git"
> > +BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="linux-3.18-at91"
> 
> 'linux-3.18-at91' appears to be a branch which means that it could be
> updated and break this config?
> 
> I believe in order to ensure that a build is reproducible for everyone
> that this should be a tag or commit SHA. This would also apply to all
> your other new NAND configurations for the Atmel boards.
> 

That is the expected behaviour. This branch must not break. I'm not
saying it won't break but if it ever breaks, it will definitively be
fixed.


-- 
Alexandre Belloni, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH 7/8] configs: add defconfig for Atmel sama5d3 Xplained
  2015-04-30 15:14     ` Alexandre Belloni
@ 2015-04-30 15:16       ` Ryan Barnett
  2015-05-01  7:33       ` Thomas Petazzoni
  1 sibling, 0 replies; 20+ messages in thread
From: Ryan Barnett @ 2015-04-30 15:16 UTC (permalink / raw)
  To: buildroot

Alexandre,

On Thu, Apr 30, 2015 at 10:14 AM, Alexandre Belloni
<alexandre.belloni@free-electrons.com> wrote:
> On 30/04/2015 at 09:46:44 -0500, Ryan Barnett wrote :
>> Alexandre,
>>
>> On Thu, Apr 30, 2015 at 7:51 AM, Alexandre Belloni
>> <alexandre.belloni@free-electrons.com> wrote:
>> > Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
>> > ---
>> >  configs/atmel_sama5d3_xplained_defconfig | 22 ++++++++++++++++++++++
>> >  1 file changed, 22 insertions(+)
>> >  create mode 100644 configs/atmel_sama5d3_xplained_defconfig
>> >
>> > diff --git a/configs/atmel_sama5d3_xplained_defconfig b/configs/atmel_sama5d3_xplained_defconfig
>> > new file mode 100644
>> > index 000000000000..ba3c9cd664bd
>> > --- /dev/null
>> > +++ b/configs/atmel_sama5d3_xplained_defconfig
>> > @@ -0,0 +1,22 @@
>> > +BR2_arm=y
>> > +BR2_cortex_a5=y
>> > +BR2_ARM_EABIHF=y
>> > +BR2_ARM_FPU_VFPV4D16=y
>> > +BR2_ARM_INSTRUCTIONS_THUMB2=y
>> > +BR2_LINUX_KERNEL=y
>> > +BR2_LINUX_KERNEL_CUSTOM_GIT=y
>> > +BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://github.com/linux4sam/linux-at91.git"
>> > +BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="linux-3.18-at91"
>>
>> 'linux-3.18-at91' appears to be a branch which means that it could be
>> updated and break this config?
>>
>> I believe in order to ensure that a build is reproducible for everyone
>> that this should be a tag or commit SHA. This would also apply to all
>> your other new NAND configurations for the Atmel boards.
>>
>
> That is the expected behaviour. This branch must not break. I'm not
> saying it won't break but if it ever breaks, it will definitively be
> fixed.

OK - that is fine as I don't really have a strong opinion on this so
leaving it as the branch is fine with me. I was more so making the
observation.

Thanks,
-Ryan

-- 
Ryan Barnett / Sr Software Engineer
Airborne Information Systems / Security Systems and Software
MS 131-100, C Ave NE, Cedar Rapids, IA, 52498, USA
ryan.barnett at rockwellcollins.com
www.rockwellcollins.com

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

* [Buildroot] [PATCH 7/8] configs: add defconfig for Atmel sama5d3 Xplained
  2015-04-30 15:14     ` Alexandre Belloni
  2015-04-30 15:16       ` Ryan Barnett
@ 2015-05-01  7:33       ` Thomas Petazzoni
  1 sibling, 0 replies; 20+ messages in thread
From: Thomas Petazzoni @ 2015-05-01  7:33 UTC (permalink / raw)
  To: buildroot

Dear Alexandre Belloni,

On Thu, 30 Apr 2015 17:14:02 +0200, Alexandre Belloni wrote:

> > 'linux-3.18-at91' appears to be a branch which means that it could be
> > updated and break this config?
> > 
> > I believe in order to ensure that a build is reproducible for everyone
> > that this should be a tag or commit SHA. This would also apply to all
> > your other new NAND configurations for the Atmel boards.
> 
> That is the expected behaviour. This branch must not break. I'm not
> saying it won't break but if it ever breaks, it will definitively be
> fixed.

No, please don't use a branch. Never ever. This makes the build
non-reproducible. And also means that once a
linux-linux-3.18-at91.tar.gz tarball has been created in $(DL_DIR), it
is never redownloaded even if the branch is updated.

So please do like Ryan said: use a tag or a commit ID. Feel free to
update this commit ID or tag as often as you want by sending patches,
but don't use a branch name.

Thanks,

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH 0/8] configs: defconfigs for Atmel boards
  2015-04-30 14:33 ` [Buildroot] [PATCH 0/8] configs: defconfigs for Atmel boards Ryan Barnett
  2015-04-30 14:40   ` Alexandre Belloni
@ 2015-05-01  7:34   ` Thomas Petazzoni
  2015-05-01 12:02     ` Arnout Vandecappelle
  1 sibling, 1 reply; 20+ messages in thread
From: Thomas Petazzoni @ 2015-05-01  7:34 UTC (permalink / raw)
  To: buildroot

Ryan, Alex,

On Thu, 30 Apr 2015 09:33:50 -0500, Ryan Barnett wrote:

> Since you are moving all of the Atmel boards to use NAND boot
> configuration, it would be good to have a 'README' that explains how
> to load the boards utilizing the SAM-BA tool (it appears all the NAND
> configurations are using this). At minimum it would be to point to
> Linux4SAM wiki for loading instructions.

Fully agreed.

Alexandre, please also include generating a NAND capable filesystem
image as part of those defconfig, so that they can easily be
flashed/used on the boards. I guess UBI images is going to be the most
appropriate solution. But clearly, such defconfigs should not generate
just a tarball.

Thanks

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH 6/8] configs: add defconfig for Atmel sama4d4 Xplained Ultra
  2015-04-30 12:51 ` [Buildroot] [PATCH 6/8] configs: add defconfig for Atmel sama4d4 Xplained Ultra Alexandre Belloni
@ 2015-05-01  7:35   ` Thomas Petazzoni
  0 siblings, 0 replies; 20+ messages in thread
From: Thomas Petazzoni @ 2015-05-01  7:35 UTC (permalink / raw)
  To: buildroot

Dear Alexandre Belloni,

On Thu, 30 Apr 2015 14:51:49 +0200, Alexandre Belloni wrote:
> Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>

Typo in the commit title: sama4d4 -> sama5d4.

Thanks,

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH 0/8] configs: defconfigs for Atmel boards
  2015-05-01  7:34   ` Thomas Petazzoni
@ 2015-05-01 12:02     ` Arnout Vandecappelle
  0 siblings, 0 replies; 20+ messages in thread
From: Arnout Vandecappelle @ 2015-05-01 12:02 UTC (permalink / raw)
  To: buildroot

On 05/01/15 09:34, Thomas Petazzoni wrote:
> Ryan, Alex,
> 
> On Thu, 30 Apr 2015 09:33:50 -0500, Ryan Barnett wrote:
> 
>> Since you are moving all of the Atmel boards to use NAND boot
>> configuration, it would be good to have a 'README' that explains how
>> to load the boards utilizing the SAM-BA tool (it appears all the NAND
>> configurations are using this). At minimum it would be to point to
>> Linux4SAM wiki for loading instructions.
> 
> Fully agreed.
> 
> Alexandre, please also include generating a NAND capable filesystem
> image as part of those defconfig, so that they can easily be
> flashed/used on the boards. I guess UBI images is going to be the most
> appropriate solution. But clearly, such defconfigs should not generate
> just a tarball.

 Actually, I think it's better to use SD card images where possible.

- If you're using it just for experimentation, then the SD card is a much more
flexible and less risky way to experiment. Personally, I even prefer
kernel-linked-with-initramfs (and DTB) images, since that's just a single file
and it automatically gives you the rest of the SD card as a FAT partition.

- If you want to use it for an actual product (prototype), then you're anyway
going to have to study in a bit more detail how the flash works and you'll
probably want to do a slightly more complicated flash partitioning.


 That said, I do think it's really useful to have those tcl scripts for using
SAM-BA.


 And of course, since I never use the defconfigs myself, my opinion is probably
not that important.


 Regards,
 Arnout

-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

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

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

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-30 12:51 [Buildroot] [PATCH 0/8] configs: defconfigs for Atmel boards Alexandre Belloni
2015-04-30 12:51 ` [Buildroot] [PATCH 1/8] configs: update at91sam9g45m10ek defconfig Alexandre Belloni
2015-04-30 12:51 ` [Buildroot] [PATCH 2/8] configs: add defconfig for Atmel at91sam9rlek Alexandre Belloni
2015-04-30 12:51 ` [Buildroot] [PATCH 3/8] configs: add defconfig for Atmel at91sam9x5ek Alexandre Belloni
2015-04-30 12:51 ` [Buildroot] [PATCH 4/8] configs: add defconfig for Atmel sama5d3xek Alexandre Belloni
2015-04-30 12:51 ` [Buildroot] [PATCH 5/8] configs: add defconfig for Atmel sama5d4ek Alexandre Belloni
2015-04-30 12:51 ` [Buildroot] [PATCH 6/8] configs: add defconfig for Atmel sama4d4 Xplained Ultra Alexandre Belloni
2015-05-01  7:35   ` Thomas Petazzoni
2015-04-30 12:51 ` [Buildroot] [PATCH 7/8] configs: add defconfig for Atmel sama5d3 Xplained Alexandre Belloni
2015-04-30 14:46   ` Ryan Barnett
2015-04-30 15:14     ` Alexandre Belloni
2015-04-30 15:16       ` Ryan Barnett
2015-05-01  7:33       ` Thomas Petazzoni
2015-04-30 12:51 ` [Buildroot] [PATCH 8/8] configs: rename atmel_xplained_defconfig Alexandre Belloni
2015-04-30 14:36   ` Ryan Barnett
2015-04-30 14:40     ` Alexandre Belloni
2015-04-30 14:33 ` [Buildroot] [PATCH 0/8] configs: defconfigs for Atmel boards Ryan Barnett
2015-04-30 14:40   ` Alexandre Belloni
2015-05-01  7:34   ` Thomas Petazzoni
2015-05-01 12:02     ` 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.