mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-25 06:26:15 +00:00
d41d9befb9
Add u-boot bootloader based on 2023.01 to support D1-based boards, currently: - Dongshan Nezha STU - LicheePi RV Dock - MangoPi MQ-Pro - Nezha D1 Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
37 lines
1.1 KiB
Diff
37 lines
1.1 KiB
Diff
From 891fef47500dbf4aecb16e08c1d8ade3fbc8caec Mon Sep 17 00:00:00 2001
|
|
From: Samuel Holland <samuel@sholland.org>
|
|
Date: Thu, 4 Aug 2022 23:22:05 -0500
|
|
Subject: [PATCH 55/90] sunxi: Remove unnecessary Kconfig selections
|
|
|
|
Two of these selections are redundant and have no effect:
|
|
- DM_KEYBOARD is selected by USB_KEYBOARD
|
|
- DM_MMC is selected by MMC
|
|
|
|
This selection has no effect by default and is unnecessarily strong:
|
|
- USB_STORAGE is implied by DISTRO_DEFAULTS
|
|
|
|
Signed-off-by: Samuel Holland <samuel@sholland.org>
|
|
---
|
|
arch/arm/Kconfig | 3 ---
|
|
1 file changed, 3 deletions(-)
|
|
|
|
--- a/arch/arm/Kconfig
|
|
+++ b/arch/arm/Kconfig
|
|
@@ -1100,8 +1100,6 @@ config ARCH_SUNXI
|
|
select DM_I2C if I2C
|
|
select DM_SPI if SPI
|
|
select DM_SPI_FLASH if SPI
|
|
- select DM_KEYBOARD
|
|
- select DM_MMC if MMC
|
|
select DM_SCSI if SCSI
|
|
select DM_SERIAL
|
|
select GPIO_EXTRA_HEADER
|
|
@@ -1119,7 +1117,6 @@ config ARCH_SUNXI
|
|
select SYS_THUMB_BUILD if !ARM64
|
|
select USB if DISTRO_DEFAULTS
|
|
select USB_KEYBOARD if DISTRO_DEFAULTS && USB_HOST
|
|
- select USB_STORAGE if DISTRO_DEFAULTS && USB_HOST
|
|
select SPL_USE_TINY_PRINTF
|
|
select USE_PREBOOT
|
|
select SYS_RELOC_GD_ENV_ADDR
|