All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v4] configs/olimex_a10_olinuxino_lime_defconfig: new board
@ 2018-07-09 13:46 Leon Anavi
  2018-07-10 20:59 ` Arnout Vandecappelle
  0 siblings, 1 reply; 2+ messages in thread
From: Leon Anavi @ 2018-07-09 13:46 UTC (permalink / raw)
  To: buildroot

Add a defconfig for the Olimex A10-OLinuXino-LIME, reusing most
of the A20-OLinuXino-Lime and A13-OLinuXino files (sym links).

The configurations for Olimex A10-OLinuXino-LIME feature:
- U-Boot 2018.03
- Mainline Linux kernel 4.14.26

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 DEVELOPERS                                  |  4 ++
 board/olimex/a10_olinuxino/boot.cmd         |  1 +
 board/olimex/a10_olinuxino/genimage.cfg     |  1 +
 board/olimex/a10_olinuxino/post-build.sh    |  1 +
 board/olimex/a10_olinuxino/readme.txt       | 57 +++++++++++++++++++++++++++++
 configs/olimex_a10_olinuxino_lime_defconfig | 48 ++++++++++++++++++++++++
 6 files changed, 112 insertions(+)
 create mode 120000 board/olimex/a10_olinuxino/boot.cmd
 create mode 120000 board/olimex/a10_olinuxino/genimage.cfg
 create mode 120000 board/olimex/a10_olinuxino/post-build.sh
 create mode 100644 board/olimex/a10_olinuxino/readme.txt
 create mode 100644 configs/olimex_a10_olinuxino_lime_defconfig

diff --git a/DEVELOPERS b/DEVELOPERS
index cba1344..25f90f6 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -1133,6 +1133,10 @@ F:	package/aircrack-ng/
 N:	Lee Jones <lee.jones@linaro.org>
 F:	boot/afboot-stm32/
 
+N:	Leon Anavi <leon.anavi@konsulko.com>
+F:	board/olimex/a10_olinuxino
+F:	configs/olimex_a10_olinuxino_lime_defconfig
+
 N:	Lionel Flandrin <lionel@svkt.org>
 F:	package/python-babel/
 F:	package/python-daemonize/
diff --git a/board/olimex/a10_olinuxino/boot.cmd b/board/olimex/a10_olinuxino/boot.cmd
new file mode 120000
index 0000000..612c745
--- /dev/null
+++ b/board/olimex/a10_olinuxino/boot.cmd
@@ -0,0 +1 @@
+../a20_olinuxino/boot.cmd
\ No newline at end of file
diff --git a/board/olimex/a10_olinuxino/genimage.cfg b/board/olimex/a10_olinuxino/genimage.cfg
new file mode 120000
index 0000000..c21932f
--- /dev/null
+++ b/board/olimex/a10_olinuxino/genimage.cfg
@@ -0,0 +1 @@
+../a20_olinuxino/genimage.cfg
\ No newline at end of file
diff --git a/board/olimex/a10_olinuxino/post-build.sh b/board/olimex/a10_olinuxino/post-build.sh
new file mode 120000
index 0000000..b346896
--- /dev/null
+++ b/board/olimex/a10_olinuxino/post-build.sh
@@ -0,0 +1 @@
+../a20_olinuxino/post-build.sh
\ No newline at end of file
diff --git a/board/olimex/a10_olinuxino/readme.txt b/board/olimex/a10_olinuxino/readme.txt
new file mode 100644
index 0000000..ba4bf69
--- /dev/null
+++ b/board/olimex/a10_olinuxino/readme.txt
@@ -0,0 +1,57 @@
+A10-OLinuXino-LIME
+
+Intro
+=====
+
+These are open hardware boards, all based on the Allwinner A10 SoC.
+
+for more details about the boards see the following pages:
+ - https://www.olimex.com/Products/OLinuXino/open-source-hardware
+ - https://www.olimex.com/Products/OLinuXino/A10/A10-OLinuXino-LIME/
+
+The following defconfigs are available:
+ - olimex_a10_olinuxino_lime_defconfig
+   for the A10-OLinuXino-LIME board using mainline kernel
+
+(see http://linux-sunxi.org/Linux_Kernel for more details)
+
+How to build it
+===============
+
+Configure Buildroot:
+
+    $ make <board>_defconfig
+
+Compile everything and build the rootfs image:
+
+    $ make
+
+Result of the build
+-------------------
+
+After building, you should get a tree like this:
+
+    output/images/
+    +-- boot.scr
+    +-- rootfs.ext2
+    +-- rootfs.ext4 -> rootfs.ext2
+    +-- sdcard.img
+    +-- sun4i-a10-olinuxino-lime.dtb (lime, mainline)
+    +-- u-boot.bin
+    +-- u-boot-sunxi-with-spl.bin
+    `-- zImage
+
+
+How to write the SD card
+========================
+
+The sdcard.img file is a complete bootable image ready to be written
+on the boot medium. To install it, simply copy the image to a uSD
+card:
+
+    # dd if=output/images/sdcard.img of=/dev/sdX
+
+Where 'sdX' is the device node of the uSD.
+
+Eject the SD card, insert it in the A10-OLinuXino board, and power it up.
+
diff --git a/configs/olimex_a10_olinuxino_lime_defconfig b/configs/olimex_a10_olinuxino_lime_defconfig
new file mode 100644
index 0000000..0b975b0
--- /dev/null
+++ b/configs/olimex_a10_olinuxino_lime_defconfig
@@ -0,0 +1,48 @@
+# Architecture
+BR2_arm=y
+BR2_cortex_a8=y
+#BR2_ARM_EABIHF=y
+
+# Linux headers same as kernel, a 4.14 series
+BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_14=y
+
+# System configuration
+BR2_TARGET_GENERIC_HOSTNAME="a10-olinuxino"
+BR2_TARGET_GENERIC_ISSUE="Welcome to OLinuXino!"
+BR2_TARGET_GENERIC_GETTY=y
+BR2_TARGET_GENERIC_GETTY_PORT="ttyS0"
+BR2_ROOTFS_POST_BUILD_SCRIPT="board/olimex/a10_olinuxino/post-build.sh"
+BR2_ROOTFS_POST_IMAGE_SCRIPT="support/scripts/genimage.sh"
+BR2_ROOTFS_POST_SCRIPT_ARGS="-c board/olimex/a10_olinuxino/genimage.cfg"
+
+# Kernel
+BR2_LINUX_KERNEL=y
+BR2_LINUX_KERNEL_CUSTOM_VERSION=y
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.14.26"
+BR2_LINUX_KERNEL_USE_DEFCONFIG=y
+BR2_LINUX_KERNEL_DEFCONFIG="sunxi"
+BR2_LINUX_KERNEL_DTS_SUPPORT=y
+BR2_LINUX_KERNEL_INTREE_DTS_NAME="sun4i-a10-olinuxino-lime"
+BR2_LINUX_KERNEL_INSTALL_TARGET=y
+
+# Filesystem
+BR2_TARGET_ROOTFS_EXT2=y
+BR2_TARGET_ROOTFS_EXT2_4=y
+# BR2_TARGET_ROOTFS_TAR is not set
+
+# Bootloaders
+BR2_TARGET_UBOOT=y
+BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
+BR2_TARGET_UBOOT_CUSTOM_VERSION=y
+BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2018.03"
+BR2_TARGET_UBOOT_BOARD_DEFCONFIG="A10-OLinuXino-Lime"
+BR2_TARGET_UBOOT_NEEDS_DTC=y
+BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y
+BR2_TARGET_UBOOT_FORMAT_BIN=y
+BR2_TARGET_UBOOT_SPL=y
+BR2_TARGET_UBOOT_SPL_NAME="u-boot-sunxi-with-spl.bin"
+BR2_TARGET_UBOOT_BOOT_SCRIPT=y
+BR2_TARGET_UBOOT_BOOT_SCRIPT_SOURCE="board/olimex/a10_olinuxino/boot.cmd"
+
+# Additional tools
+BR2_PACKAGE_HOST_GENIMAGE=y
-- 
2.7.4

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

* [Buildroot] [PATCH v4] configs/olimex_a10_olinuxino_lime_defconfig: new board
  2018-07-09 13:46 [Buildroot] [PATCH v4] configs/olimex_a10_olinuxino_lime_defconfig: new board Leon Anavi
@ 2018-07-10 20:59 ` Arnout Vandecappelle
  0 siblings, 0 replies; 2+ messages in thread
From: Arnout Vandecappelle @ 2018-07-10 20:59 UTC (permalink / raw)
  To: buildroot

 Hi Leon,

On 09-07-18 15:46, Leon Anavi wrote:
> Add a defconfig for the Olimex A10-OLinuXino-LIME, reusing most
> of the A20-OLinuXino-Lime and A13-OLinuXino files (sym links).
> 
> The configurations for Olimex A10-OLinuXino-LIME feature:
> - U-Boot 2018.03
> - Mainline Linux kernel 4.14.26
> 
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>

[snip]
> diff --git a/board/olimex/a10_olinuxino/readme.txt b/board/olimex/a10_olinuxino/readme.txt
> new file mode 100644
> index 0000000..ba4bf69
> --- /dev/null
> +++ b/board/olimex/a10_olinuxino/readme.txt
> @@ -0,0 +1,57 @@
> +A10-OLinuXino-LIME
> +
> +Intro
> +=====
> +
> +These are open hardware boards, all based on the Allwinner A10 SoC.

 Personally, I would have made the entire directory a symlink to the a20
directory and I would have merged the two readme's into one. But there's
something to be said for copying it as well, so I've kept it like this.

[snip]
> +++ b/configs/olimex_a10_olinuxino_lime_defconfig
> @@ -0,0 +1,48 @@
> +# Architecture
> +BR2_arm=y
> +BR2_cortex_a8=y
> +#BR2_ARM_EABIHF=y

 This commented-out line is not needed. Yes, it's still there in the a20
defconfigs, but that's just because we defaulted to softfloat ABI a while ago.
Those EABIHF=y lines are actually redundant in all defconfigs.

 Applied to master with that changed, thanks.

 Regards,
 Arnout

[snip]
-- 
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:  7493 020B C7E3 8618 8DEC 222C 82EB F404 F9AC 0DDF

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

end of thread, other threads:[~2018-07-10 20:59 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-09 13:46 [Buildroot] [PATCH v4] configs/olimex_a10_olinuxino_lime_defconfig: new board Leon Anavi
2018-07-10 20:59 ` 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.