All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] configs: add Freescale i.MX 6SoloLite EVK support
@ 2013-09-26  8:52 Gilles Talis
  2013-09-26  8:52 ` [Buildroot] [PATCH] configs: add Freescale SABRE-SD board support Gilles Talis
  2013-09-26 19:37 ` [Buildroot] [PATCH] configs: add Freescale i.MX 6SoloLite EVK support Peter Korsgaard
  0 siblings, 2 replies; 7+ messages in thread
From: Gilles Talis @ 2013-09-26  8:52 UTC (permalink / raw
  To: buildroot

i.MX6 SoloLite EVK is Freescale's evaluation board based on
the i.MX6 SoloLite applications processor.

This defconfig is based off Freescale "official" git repo on git.freescale.com
and SW release 3.0.35_4.1.0.

Signed-off-by: Gilles Talis <gilles.talis@gmail.com>
---
 configs/freescale_imx6sololiteevk_defconfig |   15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 configs/freescale_imx6sololiteevk_defconfig

diff --git a/configs/freescale_imx6sololiteevk_defconfig b/configs/freescale_imx6sololiteevk_defconfig
new file mode 100644
index 0000000..7ed6e6c
--- /dev/null
+++ b/configs/freescale_imx6sololiteevk_defconfig
@@ -0,0 +1,15 @@
+BR2_arm=y
+BR2_cortex_a9=y
+BR2_ROOTFS_DEVICE_CREATION_STATIC=y
+BR2_TARGET_GENERIC_GETTY_PORT="ttymxc0"
+BR2_LINUX_KERNEL=y
+BR2_LINUX_KERNEL_CUSTOM_GIT=y
+BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL="git://git.freescale.com/imx/linux-2.6-imx.git"
+BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION="rel_imx_3.0.35_4.1.0"
+BR2_LINUX_KERNEL_DEFCONFIG="imx6s"
+BR2_TARGET_ROOTFS_EXT2=y
+BR2_TARGET_UBOOT=y
+BR2_TARGET_UBOOT_BOARDNAME="mx6sl_evk"
+BR2_TARGET_UBOOT_CUSTOM_GIT=y
+BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL="git://git.freescale.com/imx/uboot-imx.git"
+BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION="rel_imx_3.0.35_4.1.0"
-- 
1.7.10.4

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

* [Buildroot] [PATCH] configs: add Freescale SABRE-SD board support
  2013-09-26  8:52 [Buildroot] [PATCH] configs: add Freescale i.MX 6SoloLite EVK support Gilles Talis
@ 2013-09-26  8:52 ` Gilles Talis
  2013-09-26 19:37 ` [Buildroot] [PATCH] configs: add Freescale i.MX 6SoloLite EVK support Peter Korsgaard
  1 sibling, 0 replies; 7+ messages in thread
From: Gilles Talis @ 2013-09-26  8:52 UTC (permalink / raw
  To: buildroot

SABRE Board for Smart Devices (SABRE-SD) is Freescale's evaluation board
based on the i.MX 6Quad ARM Cortex-A9 applications processor.

This defconfig is based off Freescale "official" git repo on git.freescale.com
and SW release 3.0.35_4.1.0.

Signed-off-by: Gilles Talis <gilles.talis@gmail.com>
---
 configs/freescale_imx6sabresd_defconfig |   15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 configs/freescale_imx6sabresd_defconfig

diff --git a/configs/freescale_imx6sabresd_defconfig b/configs/freescale_imx6sabresd_defconfig
new file mode 100644
index 0000000..4b071e7
--- /dev/null
+++ b/configs/freescale_imx6sabresd_defconfig
@@ -0,0 +1,15 @@
+BR2_arm=y
+BR2_cortex_a9=y
+BR2_ROOTFS_DEVICE_CREATION_STATIC=y
+BR2_TARGET_GENERIC_GETTY_PORT="ttymxc0"
+BR2_LINUX_KERNEL=y
+BR2_LINUX_KERNEL_CUSTOM_GIT=y
+BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL="git://git.freescale.com/imx/linux-2.6-imx.git"
+BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION="rel_imx_3.0.35_4.1.0"
+BR2_LINUX_KERNEL_DEFCONFIG="imx6"
+BR2_TARGET_ROOTFS_EXT2=y
+BR2_TARGET_UBOOT=y
+BR2_TARGET_UBOOT_BOARDNAME="mx6q_sabresd"
+BR2_TARGET_UBOOT_CUSTOM_GIT=y
+BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL="git://git.freescale.com/imx/uboot-imx.git"
+BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION="rel_imx_3.0.35_4.1.0"
-- 
1.7.10.4

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

* [Buildroot] [PATCH] configs: add Freescale i.MX 6SoloLite EVK support
  2013-09-26  8:52 [Buildroot] [PATCH] configs: add Freescale i.MX 6SoloLite EVK support Gilles Talis
  2013-09-26  8:52 ` [Buildroot] [PATCH] configs: add Freescale SABRE-SD board support Gilles Talis
@ 2013-09-26 19:37 ` Peter Korsgaard
  2013-09-27  9:03   ` Gilles Talis
  1 sibling, 1 reply; 7+ messages in thread
From: Peter Korsgaard @ 2013-09-26 19:37 UTC (permalink / raw
  To: buildroot

>>>>> "Gilles" == Gilles Talis <gilles.talis@gmail.com> writes:

 Gilles> i.MX6 SoloLite EVK is Freescale's evaluation board based on
 Gilles> the i.MX6 SoloLite applications processor.

 Gilles> This defconfig is based off Freescale "official" git repo on git.freescale.com
 Gilles> and SW release 3.0.35_4.1.0.

 Gilles> Signed-off-by: Gilles Talis <gilles.talis@gmail.com>
 Gilles> ---
 Gilles>  configs/freescale_imx6sololiteevk_defconfig |   15 +++++++++++++++
 Gilles>  1 file changed, 15 insertions(+)
 Gilles>  create mode 100644 configs/freescale_imx6sololiteevk_defconfig

 Gilles> diff --git a/configs/freescale_imx6sololiteevk_defconfig b/configs/freescale_imx6sololiteevk_defconfig
 Gilles> new file mode 100644
 Gilles> index 0000000..7ed6e6c
 Gilles> --- /dev/null
 Gilles> +++ b/configs/freescale_imx6sololiteevk_defconfig
 Gilles> @@ -0,0 +1,15 @@
 Gilles> +BR2_arm=y
 Gilles> +BR2_cortex_a9=y
 Gilles> +BR2_ROOTFS_DEVICE_CREATION_STATIC=y

Why do you want static device nodes?

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH] configs: add Freescale i.MX 6SoloLite EVK support
  2013-09-26 19:37 ` [Buildroot] [PATCH] configs: add Freescale i.MX 6SoloLite EVK support Peter Korsgaard
@ 2013-09-27  9:03   ` Gilles Talis
  2013-09-27 10:02     ` Peter Korsgaard
  0 siblings, 1 reply; 7+ messages in thread
From: Gilles Talis @ 2013-09-27  9:03 UTC (permalink / raw
  To: buildroot

Peter,

>  Gilles> +BR2_ROOTFS_DEVICE_CREATION_STATIC=y
>
> Why do you want static device nodes?
Kernel defconfig does not support DEVTMPFS. I did not want to change
that. Is it a problem?

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

* [Buildroot] [PATCH] configs: add Freescale i.MX 6SoloLite EVK support
  2013-09-27  9:03   ` Gilles Talis
@ 2013-09-27 10:02     ` Peter Korsgaard
  2013-09-27 10:08       ` Gilles Talis
  0 siblings, 1 reply; 7+ messages in thread
From: Peter Korsgaard @ 2013-09-27 10:02 UTC (permalink / raw
  To: buildroot

>>>>> "Gilles" == Gilles Talis <gilles.talis@gmail.com> writes:

 Gilles> Peter,
 Gilles> +BR2_ROOTFS_DEVICE_CREATION_STATIC=y
 >> 
 >> Why do you want static device nodes?

 Gilles> Kernel defconfig does not support DEVTMPFS. I did not want to change
 Gilles> that. Is it a problem?

It's not really a problem, no - Just quite uncommon. Do notice that
Buildroot automatically enables devtmpfs support in the kernel if
needed, so it should all just work.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH] configs: add Freescale i.MX 6SoloLite EVK support
  2013-09-27 10:02     ` Peter Korsgaard
@ 2013-09-27 10:08       ` Gilles Talis
  2013-09-27 10:50         ` Peter Korsgaard
  0 siblings, 1 reply; 7+ messages in thread
From: Gilles Talis @ 2013-09-27 10:08 UTC (permalink / raw
  To: buildroot

Hi Peter,

> It's not really a problem, no - Just quite uncommon. Do notice that
> Buildroot automatically enables devtmpfs support in the kernel if
> needed, so it should all just work.

Does it? I was not aware of that. It did not seem to work for me,
hence the reason why I had to force static device nodes. Let me give
it another try and see how it goes.
Thanks

Gilles.

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

* [Buildroot] [PATCH] configs: add Freescale i.MX 6SoloLite EVK support
  2013-09-27 10:08       ` Gilles Talis
@ 2013-09-27 10:50         ` Peter Korsgaard
  0 siblings, 0 replies; 7+ messages in thread
From: Peter Korsgaard @ 2013-09-27 10:50 UTC (permalink / raw
  To: buildroot

>>>>> "Gilles" == Gilles Talis <gilles.talis@gmail.com> writes:

 Gilles> Hi Peter,
 >> It's not really a problem, no - Just quite uncommon. Do notice that
 >> Buildroot automatically enables devtmpfs support in the kernel if
 >> needed, so it should all just work.

 Gilles> Does it? I was not aware of that. It did not seem to work for me,
 Gilles> hence the reason why I had to force static device nodes. Let me give
 Gilles> it another try and see how it goes.

As long as you build the kernel through buildroot it should:

git grep -B1  DEVTMPFS linux/linux.mk
linux/linux.mk- $(if $(BR2_ROOTFS_DEVICE_CREATION_STATIC),,
linux/linux.mk:         $(call KCONFIG_ENABLE_OPT,CONFIG_DEVTMPFS,$(@D)/.config)
linux/linux.mk:         $(call KCONFIG_ENABLE_OPT,CONFIG_DEVTMPFS_MOUNT,$(@D)/.c

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2013-09-27 10:50 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-26  8:52 [Buildroot] [PATCH] configs: add Freescale i.MX 6SoloLite EVK support Gilles Talis
2013-09-26  8:52 ` [Buildroot] [PATCH] configs: add Freescale SABRE-SD board support Gilles Talis
2013-09-26 19:37 ` [Buildroot] [PATCH] configs: add Freescale i.MX 6SoloLite EVK support Peter Korsgaard
2013-09-27  9:03   ` Gilles Talis
2013-09-27 10:02     ` Peter Korsgaard
2013-09-27 10:08       ` Gilles Talis
2013-09-27 10:50         ` Peter Korsgaard

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.