mirror of
https://github.com/armbian/build.git
synced 2025-08-18 21:11:02 +02:00
* helios4: next branch use u-boot 2018 use new u-boot based on upstream 2018 Signed-off-by: Aditya Prayoga <aditya@kobol.io> * helios4: Tweak fancontrol configuration Adjusted MINSTART and MINSTOP to suit both old and new fan. Adjusted TEMP threshold so fan would stop or run in minimal speed when the system idle. Fixed wrong MINPWM value. URL:https://wiki.kobol.io/pwm/#configuration-file Signed-off-by: Aditya Prayoga <aditya@kobol.io> * kernel: mvebu-next: use upstream helios4 dts Helios4 device tree has been merged on upstream since 4.19. Rework the patch to produce same device tree. URL:https://patchwork.kernel.org/patch/10449393/ Signed-off-by: Aditya Prayoga <aditya@kobol.io> * Helios4: Use boot-mvebu-next bootscript Use boot-mvebu-next.cmd that make use of upstream's Generic Distro Configuration. Since loadaddr and fdt_addr varibales are no longer required, remove the patch. Signed-off-by: Aditya Prayoga <aditya@kobol.io> * Helios4: mvebu-next: Add workaround for SPI and SATA concurrent access issue Concurrent access on SPI NOR and SATA drives can lead to unstable SATA. Therefore as workaround, disable SATA controller when SPI flash access is needed and make it as user configurable item in armbianEnv.txt This workaround might applies to Clearfog too. Refer to Commit 59af84c07c09 ("Helios4: Add SPI bootloader install feature (#1126)") Signed-off-by: Aditya Prayoga <aditya@kobol.io> * Bootscripts: Fixed boot-mvebu-next.cmd The environment setting (armbianEnv.txt) is loaded to RAM located on ${load_addr} but the env import use wrong address (${pxefile_addr_r}). bootargs still expect ${boot_interface} which carried over from boot- marvell.cmd. Upstream's distro configuration use ${devtype} instead. Signed-off-by: Aditya Prayoga <aditya@kobol.io>
37 lines
1.0 KiB
Diff
37 lines
1.0 KiB
Diff
From 12d574e63a79285b374ed422cd7d762f7f20bac3 Mon Sep 17 00:00:00 2001
|
|
Message-Id: <12d574e63a79285b374ed422cd7d762f7f20bac3.1540752056.git.aditya@kobol.io>
|
|
In-Reply-To: <3eb15c0c6a0f26e418074cf3be9490a36f9161fd.1540752056.git.aditya@kobol.io>
|
|
References: <3eb15c0c6a0f26e418074cf3be9490a36f9161fd.1540752056.git.aditya@kobol.io>
|
|
From: Aditya Prayoga <aditya@kobol.io>
|
|
Date: Wed, 17 Oct 2018 14:40:35 +0800
|
|
Subject: [PATCH 04/11] helios4: Add RTC
|
|
|
|
---
|
|
configs/helios4_defconfig | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/configs/helios4_defconfig b/configs/helios4_defconfig
|
|
index e30eb3d..3bbbe0d 100644
|
|
--- a/configs/helios4_defconfig
|
|
+++ b/configs/helios4_defconfig
|
|
@@ -28,6 +28,7 @@ CONFIG_CMD_PCI=y
|
|
CONFIG_CMD_SF=y
|
|
CONFIG_CMD_SPI=y
|
|
CONFIG_CMD_USB=y
|
|
+CONFIG_CMD_DATE=y
|
|
# CONFIG_CMD_SETEXPR is not set
|
|
CONFIG_CMD_TFTPPUT=y
|
|
CONFIG_CMD_CACHE=y
|
|
@@ -51,6 +52,8 @@ CONFIG_MVNETA=y
|
|
CONFIG_MII=y
|
|
CONFIG_PCI=y
|
|
CONFIG_SCSI=y
|
|
+CONFIG_DM_RTC=y
|
|
+CONFIG_RTC_MVEBU=y
|
|
CONFIG_DEBUG_UART_SHIFT=2
|
|
CONFIG_SYS_NS16550=y
|
|
CONFIG_KIRKWOOD_SPI=y
|
|
--
|
|
2.7.4
|
|
|