All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] Add Gnublin board support with fixed kernel header version
@ 2013-02-08 12:09 Zoltan Gyarmati
  2013-02-08 12:47 ` Gustavo Zacarias
  2013-04-14 19:50 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Zoltan Gyarmati @ 2013-02-08 12:09 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Zoltan Gyarmati <mr.zoltan.gyarmati@gmail.com>
---
 board/gnublin/README      |   52 +++++++++++++++++++++++++++++++++++++++++++++
 configs/gnublin_defconfig |   18 ++++++++++++++++
 2 files changed, 70 insertions(+)
 create mode 100644 board/gnublin/README
 create mode 100644 configs/gnublin_defconfig

diff --git a/board/gnublin/README b/board/gnublin/README
new file mode 100644
index 0000000..e58b366
--- /dev/null
+++ b/board/gnublin/README
@@ -0,0 +1,52 @@
+This the Buildroot support for the  LPC3131 based Gnublin board (see here:
+http://en.gnublin.org/) and to the Elektor Linux board
+(http://www.elektor.com/news/elektor-presents-embedded-linux-made-easy.2147294.
+lynkx)
+
+Unfortunately currently the AD and the pwm modules are not supported, i'm about
+to add also those drivers as well to the current kernel later.
+
+Base kernel version: 3.7 (available here:
+https://gitorious.org/linux-3-7-gnublin/linux-3-7-gnublin/commits/gnublin-
+support)
+
+U-boot version: 2009.11 (available here:
+https://gitorious.org/u-boot-gnublin-support/u-boot-gnublin-support)
+
+
+Steps to create a bootable SD card (with the given config you need an at least
+500 MB SD card):
+
+1.Config buildroot with the gnublin_defconfig:
+
+$ make gnublin_defconfig
+
+2.Tweak the config for your needs:
+
+$ make menuconfig
+
+3.Build:
+
+$ make
+
+4.Create two partitions on your SD card, one with type of BootIt (fdisk ID: df),
+the size should be around 1M, and another partition with all of the left space
+on the card, and with the type of normal DOS partition.
+
+5.From the output/images directory dump the u-boot image to the BootIt partition
+(probably you have to modify the output /dev files according to your system):
+
+$ dd if=output/images/u-boot.bin of=/dev/sdc1
+
+6.Dump the root fs image as well:
+
+$ dd if=output/images/rootfs.ext2 of=/dev/sdc2
+
+7.Insert the SD card into the board's slot, and your board should boot up with
+your newly created system.
+
+Any feedback/report is welcome on the mr.zoltan.gyarmati[at]gmail.com 
+
+
+
+
diff --git a/configs/gnublin_defconfig b/configs/gnublin_defconfig
new file mode 100644
index 0000000..85fa189
--- /dev/null
+++ b/configs/gnublin_defconfig
@@ -0,0 +1,18 @@
+BR2_arm=y
+BR2_arm926t=y
+BR2_KERNEL_HEADERS_VERSION=y
+BR2_DEFAULT_KERNEL_VERSION="3.7"
+BR2_TARGET_GENERIC_ISSUE="Welcome to Gnublin"
+BR2_TARGET_ROOTFS_EXT2=y
+BR2_TARGET_ROOTFS_EXT2_BLOCKS=475000
+BR2_TARGET_UBOOT=y
+BR2_TARGET_UBOOT_BOARDNAME="GNUBLIN"
+BR2_TARGET_UBOOT_CUSTOM_GIT=y
+BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL="git://gitorious.org/u-boot-gnublin-support/u-boot-gnublin-support.git"
+BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION="2009.11_gnublin_support_v2"
+BR2_LINUX_KERNEL=y
+BR2_LINUX_KERNEL_CUSTOM_GIT=y
+BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL="git://gitorious.org/linux-3-7-gnublin/linux-3-7-gnublin.git"
+BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION="v3.7-gnublin-2"
+BR2_LINUX_KERNEL_DEFCONFIG="gnublin"
+BR2_LINUX_KERNEL_INSTALL_TARGET=y
-- 
1.7.9.5

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

* [Buildroot] [PATCH] Add Gnublin board support with fixed kernel header version
  2013-02-08 12:09 [Buildroot] [PATCH] Add Gnublin board support with fixed kernel header version Zoltan Gyarmati
@ 2013-02-08 12:47 ` Gustavo Zacarias
  2013-04-14 19:50 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Gustavo Zacarias @ 2013-02-08 12:47 UTC (permalink / raw)
  To: buildroot

On 02/08/2013 09:09 AM, Zoltan Gyarmati wrote:

> Signed-off-by: Zoltan Gyarmati <mr.zoltan.gyarmati@gmail.com>

Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

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

* [Buildroot] [PATCH] Add Gnublin board support with fixed kernel header version
  2013-02-08 12:09 [Buildroot] [PATCH] Add Gnublin board support with fixed kernel header version Zoltan Gyarmati
  2013-02-08 12:47 ` Gustavo Zacarias
@ 2013-04-14 19:50 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2013-04-14 19:50 UTC (permalink / raw)
  To: buildroot

>>>>> "Zoltan" == Zoltan Gyarmati <mr.zoltan.gyarmati@gmail.com> writes:

 Zoltan> Signed-off-by: Zoltan Gyarmati <mr.zoltan.gyarmati@gmail.com>

Committed with some minor white space fixups, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2013-04-14 19:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-02-08 12:09 [Buildroot] [PATCH] Add Gnublin board support with fixed kernel header version Zoltan Gyarmati
2013-02-08 12:47 ` Gustavo Zacarias
2013-04-14 19: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.