All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] Add LicheePi Zero support
@ 2018-03-20 18:27 Michel Stempin
  2018-03-21 14:55 ` Thomas Petazzoni
  2019-03-05 22:37 ` [Buildroot] [PATCH v2 " Michel Stempin
  0 siblings, 2 replies; 5+ messages in thread
From: Michel Stempin @ 2018-03-20 18:27 UTC (permalink / raw)
  To: buildroot



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

* [Buildroot] [PATCH 1/1] Add LicheePi Zero support
  2018-03-20 18:27 [Buildroot] [PATCH 1/1] Add LicheePi Zero support Michel Stempin
@ 2018-03-21 14:55 ` Thomas Petazzoni
  2018-03-22  8:11   ` Michel Stempin
  2019-03-05 22:37 ` [Buildroot] [PATCH v2 " Michel Stempin
  1 sibling, 1 reply; 5+ messages in thread
From: Thomas Petazzoni @ 2018-03-21 14:55 UTC (permalink / raw)
  To: buildroot

Hello,

Thanks for this contribution!

On Tue, 20 Mar 2018 19:27:35 +0100, Michel Stempin wrote:
> From b27c30f03f0355f8401ecedacd8f5378c3a6cf02 Mon Sep 17 00:00:00 2001
> From: Michel Stempin <michel.stempin@wanadoo.fr>
> Date: Tue, 20 Mar 2018 19:23:13 +0100
> Subject: [PATCH 1/1] Add LicheePi Zero support

This looks odd. Could you use "git send-email" to send your patches ?

More comments below.


> diff --git a/board/licheepi/post-build.sh b/board/licheepi/post-build.sh
> new file mode 100755
> index 0000000..dda2987
> --- /dev/null
> +++ b/board/licheepi/post-build.sh
> @@ -0,0 +1,13 @@
> +#!/bin/sh
> +BOARD_DIR="$( dirname "${0}" )"
> +MKIMAGE="${HOST_DIR}/bin/mkimage"
> +MKSWAP="${HOST_DIR}/sbin/mkswap"
> +BOOT_CMD="${BOARD_DIR}/boot.cmd"
> +BOOT_CMD_H="${BINARIES_DIR}/boot.scr"
> +
> +# U-Boot script
> +"${MKIMAGE}" -C none -A arm -T script -d "${BOOT_CMD}" "${BOOT_CMD_H}"

This should be done using BR2_TARGET_UBOOT_BOOT_SCRIPT.

> +
> +# Swap
> +sed -i '/^\/swap/d' "${TARGET_DIR}/etc/fstab"
> +echo "/swap		none		swap	defaults	0	0" >> "${TARGET_DIR}/etc/fstab"

Why do you need to tweak this in the fstab ?

> diff --git a/board/licheepi/post-image.sh b/board/licheepi/post-image.sh

You can use support/scripts/genimage.sh instead.


> diff --git a/configs/licheepi_zero_defconfig b/configs/licheepi_zero_defconfig
> new file mode 100644
> index 0000000..4b7e7ac
> --- /dev/null
> +++ b/configs/licheepi_zero_defconfig
> @@ -0,0 +1,75 @@
> +# Target options
> +BR2_arm=y
> +BR2_cortex_a7=y
> +BR2_ARM_FPU_VFPV4=y
> +
> +# Toolchain
> +# External Linaro ARM 2017.11 toolchain
> +BR2_TOOLCHAIN_EXTERNAL=y

Please use the internal toolchain in the defconfig, like we do in all
other defconfigs.

> +# System configuration
> +BR2_TARGET_GENERIC_HOSTNAME="licheepi-zero"
> +BR2_TARGET_GENERIC_ISSUE="Welcome to Buildroot for the LicheePi Zero"
> +BR2_TARGET_GENERIC_ROOT_PASSWD="licheepi"
> +# Run a getty (login prompt) after boot on ttyS0 @ 115200 bps
> +BR2_TARGET_GENERIC_GETTY_PORT="ttyS0"
> +BR2_TARGET_GENERIC_GETTY_BAUDRATE_115200=y
> +# Custom scripts for image creation
> +BR2_ROOTFS_POST_BUILD_SCRIPT="board/licheepi/post-build.sh"
> +BR2_ROOTFS_POST_IMAGE_SCRIPT="board/licheepi/post-image.sh"
> +
> +# Kernel
> +# Custom 4.14.14 kernel based on stable linux.4.14.y from Lichee-Pi Github repository
> +BR2_LINUX_KERNEL=y
> +BR2_LINUX_KERNEL_CUSTOM_GIT=y
> +BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://github.com/Lichee-Pi/linux"
> +BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="zero-4.14.y"

This looks like a branch and not a tag or commit. You should use a tag
or commit so that the build is reproducible.

> +# In-tree kernel configuration
> +BR2_LINUX_KERNEL_DEFCONFIG="licheepi_zero"
> +# AllWinner V3s-based DTS
> +BR2_LINUX_KERNEL_DTS_SUPPORT=y
> +BR2_LINUX_KERNEL_INTREE_DTS_NAME="sun8i-v3s-licheepi-zero sun8i-v3s-licheepi-zero-dock"
> +
> +# Target packages
> +
> +# E2fsprogs package for resize2fs
> +BR2_PACKAGE_E2FSPROGS=y
> +BR2_PACKAGE_E2FSPROGS_RESIZE2FS=y

We don't install this package in most defconfigs, so I think you should
remove it.

> +
> +#?Hardware handling
> +# Firmare
> +# Linux-firmware
> +BR2_PACKAGE_LINUX_FIRMWARE=y
> +# Wifi firmware
> +# Realtek 87xx for rtl8723bs support
> +BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX=y
> +
> +# Dhcpcd package DHCP client for Wi-Fi
> +BR2_PACKAGE_DHCPCD=y
> +
> +# WPA_supplicant package for Wi-Fi Authentication
> +BR2_PACKAGE_WPA_SUPPLICANT=y
> +BR2_PACKAGE_WPA_SUPPLICANT_AUTOSCAN=y
> +
> +# Filesystem images
> +BR2_TARGET_ROOTFS_EXT2=y
> +BR2_TARGET_ROOTFS_EXT2_4=y
> +
> +# Bootloaders
> +# Custom U-Boot from Lichee-Pi Github repository
> +BR2_TARGET_UBOOT=y
> +BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
> +BR2_TARGET_UBOOT_CUSTOM_GIT=y
> +BR2_TARGET_UBOOT_CUSTOM_REPO_URL="https://github.com/Lichee-Pi/u-boot"
> +BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="v3s-current"

Same question: is this a branch or a tag name ?

> +BR2_TARGET_UBOOT_BOARD_DEFCONFIG="LicheePi_Zero"
> +BR2_TARGET_UBOOT_FORMAT_CUSTOM=y
> +BR2_TARGET_UBOOT_FORMAT_CUSTOM_NAME="u-boot-sunxi-with-spl.bin"
> +
> +#?Host utilities
> +# Required host utilities for building an SDCard image
> +BR2_PACKAGE_HOST_DOSFSTOOLS=y
> +BR2_PACKAGE_HOST_DTC=y

DTC is not needed. It might be needed by U-Boot, but in this case, you
should use BR2_TARGET_UBOOT_NEEDS_DTC=y.

> +BR2_PACKAGE_HOST_GENIMAGE=y
> +BR2_PACKAGE_HOST_MTOOLS=y
> +BR2_PACKAGE_HOST_UBOOT_TOOLS=y

This last line will no longer be needed once you use
BR2_TARGET_UBOOT_BOOT_SCRIPT.

Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [Buildroot] [PATCH 1/1] Add LicheePi Zero support
  2018-03-21 14:55 ` Thomas Petazzoni
@ 2018-03-22  8:11   ` Michel Stempin
  0 siblings, 0 replies; 5+ messages in thread
From: Michel Stempin @ 2018-03-22  8:11 UTC (permalink / raw)
  To: buildroot

Hello Thomas,

Thank you for reviewing my patch!

Le 21/03/2018 ? 15:55, Thomas Petazzoni a ?crit?:
> Hello,
> 
> Thanks for this contribution!
> 
> On Tue, 20 Mar 2018 19:27:35 +0100, Michel Stempin wrote:
>> From b27c30f03f0355f8401ecedacd8f5378c3a6cf02 Mon Sep 17 00:00:00 2001
>> From: Michel Stempin <michel.stempin@wanadoo.fr>
>> Date: Tue, 20 Mar 2018 19:23:13 +0100
>> Subject: [PATCH 1/1] Add LicheePi Zero support
> 
> This looks odd. Could you use "git send-email" to send your patches ?

Ok, I will configure it.

> 
> More comments below.
> 
> 
>> diff --git a/board/licheepi/post-build.sh b/board/licheepi/post-build.sh
>> new file mode 100755
>> index 0000000..dda2987
>> --- /dev/null
>> +++ b/board/licheepi/post-build.sh
>> @@ -0,0 +1,13 @@
>> +#!/bin/sh
>> +BOARD_DIR="$( dirname "${0}" )"
>> +MKIMAGE="${HOST_DIR}/bin/mkimage"
>> +MKSWAP="${HOST_DIR}/sbin/mkswap"
>> +BOOT_CMD="${BOARD_DIR}/boot.cmd"
>> +BOOT_CMD_H="${BINARIES_DIR}/boot.scr"
>> +
>> +# U-Boot script
>> +"${MKIMAGE}" -C none -A arm -T script -d "${BOOT_CMD}" "${BOOT_CMD_H}"
> 
> This should be done using BR2_TARGET_UBOOT_BOOT_SCRIPT.

I didn't know how to use it. I have it working now, thanks.

> 
>> +
>> +# Swap
>> +sed -i '/^\/swap/d' "${TARGET_DIR}/etc/fstab"
>> +echo "/swap		none		swap	defaults	0	0" >> "${TARGET_DIR}/etc/fstab"
> 
> Why do you need to tweak this in the fstab ?

The LicheePi Zero is booting on SDCard by default, and has only limited (64MiB) SDRAM, so I tried to make it a turnkey solution by providing all the tools to resize the partition and filesystem and add swap.

I understand now that you try to keep the defconfig changes to the bare minimum, so I will remove all these extra tools.

> 
>> diff --git a/board/licheepi/post-image.sh b/board/licheepi/post-image.sh
> 
> You can use support/scripts/genimage.sh instead.

Ok, done.

> 
> 
>> diff --git a/configs/licheepi_zero_defconfig b/configs/licheepi_zero_defconfig
>> new file mode 100644
>> index 0000000..4b7e7ac
>> --- /dev/null
>> +++ b/configs/licheepi_zero_defconfig
>> @@ -0,0 +1,75 @@
>> +# Target options
>> +BR2_arm=y
>> +BR2_cortex_a7=y
>> +BR2_ARM_FPU_VFPV4=y
>> +
>> +# Toolchain
>> +# External Linaro ARM 2017.11 toolchain
>> +BR2_TOOLCHAIN_EXTERNAL=y
> 
> Please use the internal toolchain in the defconfig, like we do in all
> other defconfigs.

Ok, done.

> 
>> +# System configuration
>> +BR2_TARGET_GENERIC_HOSTNAME="licheepi-zero"
>> +BR2_TARGET_GENERIC_ISSUE="Welcome to Buildroot for the LicheePi Zero"
>> +BR2_TARGET_GENERIC_ROOT_PASSWD="licheepi"
>> +# Run a getty (login prompt) after boot on ttyS0 @ 115200 bps
>> +BR2_TARGET_GENERIC_GETTY_PORT="ttyS0"
>> +BR2_TARGET_GENERIC_GETTY_BAUDRATE_115200=y
>> +# Custom scripts for image creation
>> +BR2_ROOTFS_POST_BUILD_SCRIPT="board/licheepi/post-build.sh"
>> +BR2_ROOTFS_POST_IMAGE_SCRIPT="board/licheepi/post-image.sh"
>> +
>> +# Kernel
>> +# Custom 4.14.14 kernel based on stable linux.4.14.y from Lichee-Pi Github repository
>> +BR2_LINUX_KERNEL=y
>> +BR2_LINUX_KERNEL_CUSTOM_GIT=y
>> +BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://github.com/Lichee-Pi/linux"
>> +BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="zero-4.14.y"
> 
> This looks like a branch and not a tag or commit. You should use a tag
> or commit so that the build is reproducible.

OK, I will take an exact commit hash.
> 
>> +# In-tree kernel configuration
>> +BR2_LINUX_KERNEL_DEFCONFIG="licheepi_zero"
>> +# AllWinner V3s-based DTS
>> +BR2_LINUX_KERNEL_DTS_SUPPORT=y
>> +BR2_LINUX_KERNEL_INTREE_DTS_NAME="sun8i-v3s-licheepi-zero sun8i-v3s-licheepi-zero-dock"
>> +
>> +# Target packages
>> +
>> +# E2fsprogs package for resize2fs
>> +BR2_PACKAGE_E2FSPROGS=y
>> +BR2_PACKAGE_E2FSPROGS_RESIZE2FS=y
> 
> We don't install this package in most defconfigs, so I think you should
> remove it.

Ok, removed, see above.

> 
>> +
>> +#?Hardware handling
>> +# Firmare
>> +# Linux-firmware
>> +BR2_PACKAGE_LINUX_FIRMWARE=y
>> +# Wifi firmware
>> +# Realtek 87xx for rtl8723bs support
>> +BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX=y
>> +
>> +# Dhcpcd package DHCP client for Wi-Fi
>> +BR2_PACKAGE_DHCPCD=y
>> +
>> +# WPA_supplicant package for Wi-Fi Authentication
>> +BR2_PACKAGE_WPA_SUPPLICANT=y
>> +BR2_PACKAGE_WPA_SUPPLICANT_AUTOSCAN=y
>> +
>> +# Filesystem images
>> +BR2_TARGET_ROOTFS_EXT2=y
>> +BR2_TARGET_ROOTFS_EXT2_4=y
>> +
>> +# Bootloaders
>> +# Custom U-Boot from Lichee-Pi Github repository
>> +BR2_TARGET_UBOOT=y
>> +BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
>> +BR2_TARGET_UBOOT_CUSTOM_GIT=y
>> +BR2_TARGET_UBOOT_CUSTOM_REPO_URL="https://github.com/Lichee-Pi/u-boot"
>> +BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="v3s-current"
> 
> Same question: is this a branch or a tag name ?

I will take an exact commit hash as above.

> 
>> +BR2_TARGET_UBOOT_BOARD_DEFCONFIG="LicheePi_Zero"
>> +BR2_TARGET_UBOOT_FORMAT_CUSTOM=y
>> +BR2_TARGET_UBOOT_FORMAT_CUSTOM_NAME="u-boot-sunxi-with-spl.bin"
>> +
>> +#?Host utilities
>> +# Required host utilities for building an SDCard image
>> +BR2_PACKAGE_HOST_DOSFSTOOLS=y
>> +BR2_PACKAGE_HOST_DTC=y
> 
> DTC is not needed. It might be needed by U-Boot, but in this case, you
> should use BR2_TARGET_UBOOT_NEEDS_DTC=y.

OK, didn't know about this one, I tested it, it works!

> 
>> +BR2_PACKAGE_HOST_GENIMAGE=y
>> +BR2_PACKAGE_HOST_MTOOLS=y
>> +BR2_PACKAGE_HOST_UBOOT_TOOLS=y
> 
> This last line will no longer be needed once you use
> BR2_TARGET_UBOOT_BOOT_SCRIPT.

Yes, I remove it.

> 
> Thanks!
> 
> Thomas
> 

I will create a v2 patch and resubmit it for review,

Thanks!

Michel

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

* [Buildroot] [PATCH v2 1/1] Add LicheePi Zero support
  2018-03-20 18:27 [Buildroot] [PATCH 1/1] Add LicheePi Zero support Michel Stempin
  2018-03-21 14:55 ` Thomas Petazzoni
@ 2019-03-05 22:37 ` Michel Stempin
  2019-03-28 17:08   ` Thomas Petazzoni
  1 sibling, 1 reply; 5+ messages in thread
From: Michel Stempin @ 2019-03-05 22:37 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Michel Stempin <michel.stempin@wanadoo.fr>
---
Changes v1 -> v2: (suggested by Thomas)
 - use git send-email
 - use BR2_TARGET_UBOOT_BOOT_SCRIPT
 - remove fstab tweaking
 - use support/scripts/genimage.sh
 - use the internal toolchain in the defconfig
 - use a commit for building the kernel and u-boot
 - remove package resize2fs in defconfig
 - remove DTC host package use BR2_TARGET_UBOOT_NEEDS_DTC
 - remove BR2_PACKAGE_HOST_UBOOT_TOOLS

 board/licheepi/boot.cmd         |  4 +++
 board/licheepi/genimage.cfg     | 35 +++++++++++++++++++
 board/licheepi/readme.txt       | 66 ++++++++++++++++++++++++++++++++++++
 configs/licheepi_zero_defconfig | 74 +++++++++++++++++++++++++++++++++++++++++
 4 files changed, 179 insertions(+)
 create mode 100644 board/licheepi/boot.cmd
 create mode 100644 board/licheepi/genimage.cfg
 create mode 100644 board/licheepi/readme.txt
 create mode 100644 configs/licheepi_zero_defconfig

diff --git a/board/licheepi/boot.cmd b/board/licheepi/boot.cmd
new file mode 100644
index 0000000..383b347
--- /dev/null
+++ b/board/licheepi/boot.cmd
@@ -0,0 +1,4 @@
+setenv bootargs console=ttyS0,115200 panic=5 console=tty0 rootwait root=/dev/mmcblk0p2 earlyprintk rw
+load mmc 0:1 0x41000000 zImage
+load mmc 0:1 0x41800000 sun8i-v3s-licheepi-zero-dock.dtb
+bootz 0x41000000 - 0x41800000
diff --git a/board/licheepi/genimage.cfg b/board/licheepi/genimage.cfg
new file mode 100644
index 0000000..0d8540f
--- /dev/null
+++ b/board/licheepi/genimage.cfg
@@ -0,0 +1,35 @@
+image boot.vfat {
+	vfat {
+		files = {
+			"zImage",
+			"sun8i-v3s-licheepi-zero-dock.dtb",
+			"sun8i-v3s-licheepi-zero.dtb",
+			"boot.scr"
+		}
+	}
+	size = 8M
+}
+
+image sdcard.img {
+	hdimage {
+	}
+
+	partition u-boot {
+		in-partition-table = "no"
+		image = "u-boot-sunxi-with-spl.bin"
+		offset = 8192
+		size = 516096 # 512KB - 8192
+	}
+
+	partition boot {
+		partition-type = 0xC
+		bootable = "true"
+		image = "boot.vfat"
+	}
+
+	partition rootfs {
+		partition-type = 0x83
+		image = "rootfs.ext4"
+		size = 0
+	}
+}
diff --git a/board/licheepi/readme.txt b/board/licheepi/readme.txt
new file mode 100644
index 0000000..3f39bd0
--- /dev/null
+++ b/board/licheepi/readme.txt
@@ -0,0 +1,66 @@
+# LicheePi Zero
+
+Intro
+=====
+
+This directory contains a buildroot configuration for building a
+LicheePi Zero.
+
+How to build it
+===============
+
+Configure Buildroot
+-------------------
+
+There is only one LicheePi Zero defconfig files in Buildroot:
+
+  $ make licheepi_zero_defconfig
+
+Build the rootfs
+----------------
+
+Note: you will need to have access to the network, since Buildroot
+will download the packages' sources.
+
+You may now build your rootfs with:
+
+  $ make
+
+(This may take a while, consider getting yourself a coffee ;-) )
+
+Result of the build
+-------------------
+
+After building, you should obtain this tree:
+
+    output/images/
+    +-- boot.scr
+    +-- boot.vfat
+    +-- rootfs.ext2
+    +-- rootfs.ext4 -> rootfs.ext2
+    +-- rootfs.tar
+    +-- sdcard.img
+    +-- sun8i-v3s-licheepi-zero-dock.dtb
+    +-- sun8i-v3s-licheepi-zero.dtb
+    +-- u-boot.bin
+    +-- u-boot-sunxi-with-spl.bin
+    `-- zImage
+
+How to write the SD card
+========================
+
+Once the build process is finished you will have an image called
+"sdcard.img" in the output/images/ directory.
+
+Copy the bootable "sdcard.img" onto an SD card with "dd":
+
+  $ sudo dd if=output/images/sdcard.img of=/dev/sdX
+
+Alternatively, you can use the Etcher graphical tool to burn the image
+to the SD card safely and on any platform:
+
+https://etcher.io/
+
+Once the SD card is burned, insert it into your LicheePi Zero board,
+and power it up. Your new system should come up now and start a
+console on the UART0 serial port.
diff --git a/configs/licheepi_zero_defconfig b/configs/licheepi_zero_defconfig
new file mode 100644
index 0000000..6b1dc5a
--- /dev/null
+++ b/configs/licheepi_zero_defconfig
@@ -0,0 +1,74 @@
+# Target options
+BR2_arm=y
+BR2_cortex_a7=y
+BR2_ARM_FPU_VFPV4=y
+
+# Toolchain
+# Use 4.14.x headers and C++ support
+BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_14=y
+BR2_TOOLCHAIN_BUILDROOT_CXX=y
+
+# System configuration
+BR2_TARGET_GENERIC_HOSTNAME="licheepi-zero"
+BR2_TARGET_GENERIC_ISSUE="Welcome to Buildroot for the LicheePi Zero"
+BR2_TARGET_GENERIC_ROOT_PASSWD="licheepi"
+# Run a getty (login prompt) after boot on ttyS0 @ 115200 bps
+BR2_TARGET_GENERIC_GETTY_PORT="ttyS0"
+BR2_TARGET_GENERIC_GETTY_BAUDRATE_115200=y
+# Run Custom genimage script after creating filesystem images
+BR2_ROOTFS_POST_IMAGE_SCRIPT="support/scripts/genimage.sh"
+BR2_ROOTFS_POST_SCRIPT_ARGS="-c board/licheepi/genimage.cfg"
+
+# Kernel
+# Custom 4.14.14 kernel based on stable linux.4.14.y from Lichee-Pi Github repository
+BR2_LINUX_KERNEL=y
+BR2_LINUX_KERNEL_CUSTOM_GIT=y
+BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://github.com/Lichee-Pi/linux"
+BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="cda44c146b9b87290bc7c636ffa7d88cbfb03ace"
+# In-tree kernel configuration
+BR2_LINUX_KERNEL_DEFCONFIG="licheepi_zero"
+# AllWinner V3s-based DTS
+BR2_LINUX_KERNEL_DTS_SUPPORT=y
+BR2_LINUX_KERNEL_INTREE_DTS_NAME="sun8i-v3s-licheepi-zero sun8i-v3s-licheepi-zero-dock"
+
+# Target packages
+
+#?Hardware handling
+# Firmare
+# Linux-firmware
+BR2_PACKAGE_LINUX_FIRMWARE=y
+# Wifi firmware
+# Realtek 87xx for rtl8723bs support
+BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX=y
+
+# Dhcpcd package DHCP client for Wi-Fi
+BR2_PACKAGE_DHCPCD=y
+
+# WPA_supplicant package for Wi-Fi Authentication
+BR2_PACKAGE_WPA_SUPPLICANT=y
+BR2_PACKAGE_WPA_SUPPLICANT_AUTOSCAN=y
+
+# Filesystem images
+BR2_TARGET_ROOTFS_EXT2=y
+BR2_TARGET_ROOTFS_EXT2_4=y
+
+# Bootloaders
+# Custom U-Boot from Lichee-Pi Github repository
+BR2_TARGET_UBOOT=y
+BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
+BR2_TARGET_UBOOT_CUSTOM_GIT=y
+BR2_TARGET_UBOOT_CUSTOM_REPO_URL="https://github.com/Lichee-Pi/u-boot"
+BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="32ab1804cd7c5858be8009e35ca07502dc8765c7"
+BR2_TARGET_UBOOT_BOARD_DEFCONFIG="LicheePi_Zero"
+BR2_TARGET_UBOOT_NEEDS_DTC=y
+BR2_TARGET_UBOOT_FORMAT_CUSTOM=y
+BR2_TARGET_UBOOT_FORMAT_CUSTOM_NAME="u-boot-sunxi-with-spl.bin"
+# Generate a U-Boot boot script
+BR2_TARGET_UBOOT_BOOT_SCRIPT=y
+BR2_TARGET_UBOOT_BOOT_SCRIPT_SOURCE="board/licheepi/boot.cmd"
+
+# Host utilities
+# Required host utilities for building an SDCard image
+BR2_PACKAGE_HOST_DOSFSTOOLS=y
+BR2_PACKAGE_HOST_GENIMAGE=y
+BR2_PACKAGE_HOST_MTOOLS=y
-- 
2.7.4

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

* [Buildroot] [PATCH v2 1/1] Add LicheePi Zero support
  2019-03-05 22:37 ` [Buildroot] [PATCH v2 " Michel Stempin
@ 2019-03-28 17:08   ` Thomas Petazzoni
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2019-03-28 17:08 UTC (permalink / raw)
  To: buildroot

Hello Michel,

Thanks for this new iteration. I have applied it, with some changes (see below).

On Tue,  5 Mar 2019 23:37:06 +0100
Michel Stempin <michel.stempin@wanadoo.fr> wrote:

>  board/licheepi/boot.cmd         |  4 +++
>  board/licheepi/genimage.cfg     | 35 +++++++++++++++++++
>  board/licheepi/readme.txt       | 66 ++++++++++++++++++++++++++++++++++++
>  configs/licheepi_zero_defconfig | 74 +++++++++++++++++++++++++++++++++++++++++
>  4 files changed, 179 insertions(+)

The entry in the DEVELOPERS file was missing, so I added it.

> +Intro
> +=====
> +
> +This directory contains a buildroot configuration for building a
> +LicheePi Zero.
> +
> +How to build it
> +===============
> +
> +Configure Buildroot
> +-------------------
> +
> +There is only one LicheePi Zero defconfig files in Buildroot:

This sentence was not really useful, there is typically only one
defconfig for a given board in Buildroot, so I dropped it.

> diff --git a/configs/licheepi_zero_defconfig b/configs/licheepi_zero_defconfig
> new file mode 100644
> index 0000000..6b1dc5a
> --- /dev/null
> +++ b/configs/licheepi_zero_defconfig
> @@ -0,0 +1,74 @@
> +# Target options
> +BR2_arm=y
> +BR2_cortex_a7=y
> +BR2_ARM_FPU_VFPV4=y
> +
> +# Toolchain
> +# Use 4.14.x headers and C++ support
> +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_14=y
> +BR2_TOOLCHAIN_BUILDROOT_CXX=y

There was no need for C++ support, so I dropped it.

> +
> +# System configuration
> +BR2_TARGET_GENERIC_HOSTNAME="licheepi-zero"
> +BR2_TARGET_GENERIC_ISSUE="Welcome to Buildroot for the LicheePi Zero"
> +BR2_TARGET_GENERIC_ROOT_PASSWD="licheepi"

The defconfigs we have don't typically customize the root password, so
I dropped this.

> +#?Hardware handling
> +# Firmare
> +# Linux-firmware
> +BR2_PACKAGE_LINUX_FIRMWARE=y
> +# Wifi firmware
> +# Realtek 87xx for rtl8723bs support
> +BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX=y
> +
> +# Dhcpcd package DHCP client for Wi-Fi
> +BR2_PACKAGE_DHCPCD=y

Busybox already has a built-in DHCP client, which we use in other
defconfigs.

Beyond that, I simplified a bit the defconfig by removing some comments
that were really redundant as they were repeating exactly what the
options were doing.

Thanks for your contribution!

Best regards,

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

end of thread, other threads:[~2019-03-28 17:08 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-03-20 18:27 [Buildroot] [PATCH 1/1] Add LicheePi Zero support Michel Stempin
2018-03-21 14:55 ` Thomas Petazzoni
2018-03-22  8:11   ` Michel Stempin
2019-03-05 22:37 ` [Buildroot] [PATCH v2 " Michel Stempin
2019-03-28 17:08   ` Thomas Petazzoni

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.