2016-10-07 01:07:51 +00:00
|
|
|
From cc11d426638760d4a5c7ff2fca3a4e54a423c5d4 Mon Sep 17 00:00:00 2001
|
2014-11-23 07:04:09 +00:00
|
|
|
From: Kevin Mihelich <kevin@archlinuxarm.org>
|
2016-03-18 00:52:03 +00:00
|
|
|
Date: Wed, 16 Mar 2016 20:06:42 -0600
|
2016-01-18 23:26:53 +00:00
|
|
|
Subject: [PATCH] arch linux arm modifications
|
2014-11-23 07:04:09 +00:00
|
|
|
|
|
|
|
---
|
2016-07-03 03:41:43 +00:00
|
|
|
configs/omap4_panda_defconfig | 5 ++++-
|
|
|
|
include/configs/ti_omap4_common.h | 7 ++++---
|
|
|
|
2 files changed, 8 insertions(+), 4 deletions(-)
|
2014-11-23 07:04:09 +00:00
|
|
|
|
2016-07-03 03:41:43 +00:00
|
|
|
diff --git a/configs/omap4_panda_defconfig b/configs/omap4_panda_defconfig
|
2016-10-07 01:07:51 +00:00
|
|
|
index b69124e..a803236 100644
|
2016-07-03 03:41:43 +00:00
|
|
|
--- a/configs/omap4_panda_defconfig
|
|
|
|
+++ b/configs/omap4_panda_defconfig
|
2016-10-07 01:07:51 +00:00
|
|
|
@@ -4,6 +4,10 @@ CONFIG_TARGET_OMAP4_PANDA=y
|
2016-07-03 03:41:43 +00:00
|
|
|
CONFIG_SPL=y
|
2016-10-07 01:07:51 +00:00
|
|
|
CONFIG_VERSION_VARIABLE=y
|
2016-07-03 03:41:43 +00:00
|
|
|
CONFIG_HUSH_PARSER=y
|
|
|
|
+CONFIG_AUTOBOOT_KEYED=y
|
|
|
|
+CONFIG_AUTOBOOT_PROMPT="Press SPACE to abort autoboot in %d seconds\n"
|
|
|
|
+CONFIG_AUTOBOOT_DELAY_STR="d"
|
|
|
|
+CONFIG_AUTOBOOT_STOP_STR=" "
|
|
|
|
CONFIG_CMD_BOOTZ=y
|
|
|
|
# CONFIG_CMD_IMLS is not set
|
|
|
|
CONFIG_CMD_ASKENV=y
|
2016-10-07 01:07:51 +00:00
|
|
|
@@ -20,7 +24,6 @@ CONFIG_CMD_MII=y
|
2016-07-03 03:41:43 +00:00
|
|
|
CONFIG_CMD_PING=y
|
|
|
|
CONFIG_CMD_EXT2=y
|
|
|
|
CONFIG_CMD_EXT4=y
|
|
|
|
-CONFIG_CMD_EXT4_WRITE=y
|
|
|
|
CONFIG_CMD_FAT=y
|
|
|
|
CONFIG_CMD_FS_GENERIC=y
|
|
|
|
CONFIG_SYS_NS16550=y
|
2014-11-23 07:04:09 +00:00
|
|
|
diff --git a/include/configs/ti_omap4_common.h b/include/configs/ti_omap4_common.h
|
2016-10-07 01:07:51 +00:00
|
|
|
index 8c88ebf..3e8ceaf 100644
|
2014-11-23 07:04:09 +00:00
|
|
|
--- a/include/configs/ti_omap4_common.h
|
|
|
|
+++ b/include/configs/ti_omap4_common.h
|
2016-03-18 00:52:03 +00:00
|
|
|
@@ -12,6 +12,8 @@
|
|
|
|
#ifndef __CONFIG_TI_OMAP4_COMMON_H
|
|
|
|
#define __CONFIG_TI_OMAP4_COMMON_H
|
2014-11-23 07:04:09 +00:00
|
|
|
|
|
|
|
+#define CONFIG_IDENT_STRING " Arch Linux ARM"
|
|
|
|
+
|
|
|
|
/*
|
2016-03-18 00:52:03 +00:00
|
|
|
* High Level Configuration Options
|
2014-11-23 07:04:09 +00:00
|
|
|
*/
|
2016-10-07 01:07:51 +00:00
|
|
|
@@ -44,7 +46,7 @@
|
2016-07-03 03:41:43 +00:00
|
|
|
* the timings to use or use pre-determined timings (based on using the
|
|
|
|
* dynamic method. Default to the static timing infomation.
|
|
|
|
*/
|
|
|
|
-#define CONFIG_SYS_EMIF_PRECALCULATED_TIMING_REGS
|
|
|
|
+/*#define CONFIG_SYS_EMIF_PRECALCULATED_TIMING_REGS*/
|
|
|
|
#ifndef CONFIG_SYS_EMIF_PRECALCULATED_TIMING_REGS
|
|
|
|
#define CONFIG_SYS_AUTOMATIC_SDRAM_DETECTION
|
|
|
|
#define CONFIG_SYS_DEFAULT_LPDDR2_TIMINGS
|
2016-10-07 01:07:51 +00:00
|
|
|
@@ -94,9 +96,8 @@
|
2014-11-23 07:04:09 +00:00
|
|
|
|
2016-03-18 00:52:03 +00:00
|
|
|
#define BOOT_TARGET_DEVICES(func) \
|
|
|
|
func(MMC, mmc, 0) \
|
|
|
|
- func(LEGACY_MMC, legacy_mmc, 0) \
|
|
|
|
func(MMC, mmc, 1) \
|
|
|
|
- func(LEGACY_MMC, legacy_mmc, 1) \
|
|
|
|
+ func(USB, usb, 0) \
|
|
|
|
func(PXE, pxe, na) \
|
|
|
|
func(DHCP, dhcp, na)
|
2015-06-08 00:01:14 +00:00
|
|
|
|
2014-11-23 07:04:09 +00:00
|
|
|
--
|
2016-10-07 01:07:51 +00:00
|
|
|
2.10.0
|
2014-11-23 07:04:09 +00:00
|
|
|
|