forked from pool/u-boot
886f663d28
- Added support for A20-OLinuXIno-LIME2 and A10-OLinuXino-LIME from www.olimex.com - Rename XLOADER to OMAP_SPL in pre_checkin.sh and u-boot.spec.in - Update to 2015.01-rc3 * Drop upstreamed/unneeded patches: - 0001-exynos-Enable-config_distro_defaults.h.patch - 0002-exynos5-Use-config_distro_bootcmd.h.patch - boot_mode_fallback.patch - fix_snow_usb_support - fix_spl_ext.patch - fix_arm_hf_toolchain.patch - origen-ext2.patch * Update patch: - fix_snow_config.patch * Follow upstream: rpi_b config renamed to rpi - Update snow (chromebook) * Update patch: - fix_snow_config.patch patch * Add patches: - add_snow_usb_boot.patch to be able to boot from USB0 - fix_bootpart_snow_only.patch to boot on partition #2 (snow only!) * Backport patches: - fix_snow_usb_support.patch to fix USB on snow - 0001-exynos-Enable-config_distro_defaults.h.patch - 0002-exynos5-Use-config_distro_bootcmd.h.patch * Drop unneeded/obsolete patches: - fix_exynos5_text_base.patch OBS-URL: https://build.opensuse.org/request/show/265381 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/u-boot?expand=0&rev=37
31 lines
863 B
Diff
31 lines
863 B
Diff
diff --git a/include/configs/snow.h b/include/configs/snow.h
|
|
index 7eaa586..cf9a594 100644
|
|
--- a/include/configs/snow.h
|
|
+++ b/include/configs/snow.h
|
|
@@ -26,11 +26,24 @@
|
|
#define CONFIG_BOARD_COMMON
|
|
#define CONFIG_ARCH_EARLY_INIT_R
|
|
|
|
+/* USB2 */
|
|
+#define CONFIG_USB_EHCI
|
|
+#define CONFIG_USB_EHCI_EXYNOS
|
|
+
|
|
+#ifndef CONFIG_USB_EHCI
|
|
#define CONFIG_USB_XHCI
|
|
#define CONFIG_USB_XHCI_EXYNOS
|
|
+#endif /* CONFIG_USB_EHCI */
|
|
|
|
#define CONFIG_SYS_PROMPT "snow # "
|
|
#define CONFIG_IDENT_STRING " for snow"
|
|
-#define CONFIG_DEFAULT_CONSOLE "console=ttySAC1,115200n8\0"
|
|
+/* #define CONFIG_DEFAULT_CONSOLE "console=ttySAC1,115200n8\0" */
|
|
+#define CONFIG_DEFAULT_CONSOLE "console=tty\0"
|
|
+
|
|
+#define CONFIG_PRE_CONSOLE_BUFFER
|
|
+#define CONFIG_PRE_CON_BUF_SZ 0x100000
|
|
+#define CONFIG_PRE_CON_BUF_ADDR 0x41f00000
|
|
+
|
|
+#undef CONFIG_SILENT_CONSOLE
|
|
|
|
#endif /* __CONFIG_SNOW_H */
|