mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-02 09:18:05 +00:00
d8c9cf4e02
Refreshed all patches, removed 110-mx6cuboxi-mmc-fallback.patch as it seems, that upstream has probably added similar funcionality in commit 6c3fbf3e456c ("mx6cuboxi: customize board_boot_order to access eMMC") and it needs to be re-verified by device owner. Run tested on apalis. Cc: Felix Fietkau <nbd@nbd.name> Cc: Vladimir Vid <vladimir.vid@sartura.hr> Cc: Tim Harvey <tharvey@gateworks.com> Cc: Koen Vandeputte <koen.vandeputte@ncentric.com> Signed-off-by: Petr Štetiar <ynezz@true.cz> Signed-off-by: maurerr <mariusd84@gmail.com>
40 lines
1.2 KiB
Diff
40 lines
1.2 KiB
Diff
From 40fea3f6913086566586ba3a7304e28e670c9455 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Petr=20=C5=A0tetiar?= <ynezz@true.cz>
|
|
Date: Sun, 1 Mar 2020 22:47:31 +0100
|
|
Subject: [PATCH] apalis_imx6_defconfig: enable some useful commands
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
partition table info, EXT4 write support, support for FAT and generic FS
|
|
commands like load/ls that work for multiple FS types.
|
|
|
|
Signed-off-by: Petr Štetiar <ynezz@true.cz>
|
|
---
|
|
configs/apalis_imx6_defconfig | 5 +++++
|
|
1 file changed, 5 insertions(+)
|
|
|
|
diff --git a/configs/apalis_imx6_defconfig b/configs/apalis_imx6_defconfig
|
|
index 1c791ab74846..4d21e9680747 100644
|
|
--- a/configs/apalis_imx6_defconfig
|
|
+++ b/configs/apalis_imx6_defconfig
|
|
@@ -46,6 +46,7 @@ CONFIG_CMD_I2C=y
|
|
# CONFIG_CMD_LOADB is not set
|
|
# CONFIG_CMD_LOADS is not set
|
|
CONFIG_CMD_MMC=y
|
|
+CONFIG_CMD_PART=y
|
|
CONFIG_CMD_USB=y
|
|
CONFIG_CMD_USB_SDP=y
|
|
CONFIG_CMD_USB_MASS_STORAGE=y
|
|
@@ -58,6 +59,10 @@ CONFIG_CMD_PMIC=y
|
|
CONFIG_CMD_REGULATOR=y
|
|
CONFIG_OF_CONTROL=y
|
|
CONFIG_ENV_OVERWRITE=y
|
|
+CONFIG_CMD_EXT4=y
|
|
+CONFIG_CMD_EXT4_WRITE=y
|
|
+CONFIG_CMD_FAT=y
|
|
+CONFIG_CMD_FS_GENERIC=y
|
|
CONFIG_ENV_IS_IN_MMC=y
|
|
CONFIG_SYS_RELOC_GD_ENV_ADDR=y
|
|
CONFIG_SYS_MMC_ENV_PART=1
|