All of lore.kernel.org
 help / color / mirror / Atom feed
From: Otavio Salvador <otavio@ossystems.com.br>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v2 12/13] pico-imx6ul: Add new pico-hobbit config
Date: Tue,  4 Sep 2018 10:23:18 -0300	[thread overview]
Message-ID: <20180904132319.27110-12-otavio@ossystems.com.br> (raw)
In-Reply-To: <20180904132319.27110-1-otavio@ossystems.com.br>

The new config skips the boot menu which asks which board is in
use. This is useful to allow direct booting of image without user
iteration.

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---

Changes in v2: None

 board/technexion/pico-imx6ul/MAINTAINERS |  5 +++
 configs/pico-hobbit-imx6ul_defconfig     | 53 ++++++++++++++++++++++++
 2 files changed, 58 insertions(+)
 create mode 100644 configs/pico-hobbit-imx6ul_defconfig

diff --git a/board/technexion/pico-imx6ul/MAINTAINERS b/board/technexion/pico-imx6ul/MAINTAINERS
index 594a883d15..334847cf71 100644
--- a/board/technexion/pico-imx6ul/MAINTAINERS
+++ b/board/technexion/pico-imx6ul/MAINTAINERS
@@ -5,3 +5,8 @@ S:	Maintained
 F:	board/technexion/pico-imx6ul/
 F:	include/configs/pico-imx6ul.h
 F:	configs/pico-imx6ul_defconfig
+
+Technexion PICO-HOBBIT-IMX6UL
+M:	Otavio Salvador <otavio@ossystems.com.br>
+S:	Maintained
+F:	configs/pico-hobbit-imx6ul_defconfig
diff --git a/configs/pico-hobbit-imx6ul_defconfig b/configs/pico-hobbit-imx6ul_defconfig
new file mode 100644
index 0000000000..362c0a251d
--- /dev/null
+++ b/configs/pico-hobbit-imx6ul_defconfig
@@ -0,0 +1,53 @@
+CONFIG_ARM=y
+CONFIG_ARCH_MX6=y
+CONFIG_SYS_TEXT_BASE=0x87800000
+CONFIG_SPL_GPIO_SUPPORT=y
+CONFIG_SPL_LIBCOMMON_SUPPORT=y
+CONFIG_SPL_LIBGENERIC_SUPPORT=y
+CONFIG_TARGET_PICO_IMX6UL=y
+CONFIG_SPL_MMC_SUPPORT=y
+CONFIG_SPL_SERIAL_SUPPORT=y
+CONFIG_SPL=y
+CONFIG_SPL_LIBDISK_SUPPORT=y
+CONFIG_DISTRO_DEFAULTS=y
+CONFIG_NR_DRAM_BANKS=1
+CONFIG_SYS_EXTRA_OPTIONS="IMX_CONFIG=arch/arm/mach-imx/spl_sd.cfg"
+CONFIG_BOOTDELAY=3
+CONFIG_BOOTCOMMAND="run findfdt; run finduuid; run distro_bootcmd"
+CONFIG_DEFAULT_FDT_FILE="imx6ul-pico-hobbit.dtb"
+CONFIG_BOARD_EARLY_INIT_F=y
+CONFIG_SPL_I2C_SUPPORT=y
+CONFIG_SPL_USB_HOST_SUPPORT=y
+CONFIG_SPL_USB_GADGET_SUPPORT=y
+CONFIG_SPL_USB_SDP_SUPPORT=y
+CONFIG_CMD_BOOTMENU=y
+CONFIG_CMD_MEMTEST=y
+CONFIG_CMD_DFU=y
+# CONFIG_CMD_FLASH is not set
+CONFIG_CMD_GPIO=y
+CONFIG_CMD_GPT=y
+CONFIG_CMD_MMC=y
+CONFIG_CMD_USB=y
+CONFIG_CMD_USB_SDP=y
+CONFIG_CMD_USB_MASS_STORAGE=y
+CONFIG_CMD_CACHE=y
+CONFIG_CMD_EXT4_WRITE=y
+CONFIG_ENV_IS_IN_MMC=y
+CONFIG_DFU_MMC=y
+CONFIG_USB_FUNCTION_FASTBOOT=y
+CONFIG_FASTBOOT_BUF_SIZE=0x10000000
+CONFIG_FASTBOOT_FLASH=y
+CONFIG_FASTBOOT_FLASH_MMC_DEV=0
+CONFIG_FASTBOOT_CMD_OEM_FORMAT=y
+CONFIG_FSL_ESDHC=y
+CONFIG_PHYLIB=y
+CONFIG_PHY_MICREL=y
+CONFIG_MII=y
+CONFIG_USB=y
+CONFIG_USB_STORAGE=y
+CONFIG_USB_GADGET=y
+CONFIG_USB_GADGET_MANUFACTURER="FSL"
+CONFIG_USB_GADGET_VENDOR_NUM=0x0525
+CONFIG_USB_GADGET_PRODUCT_NUM=0xa4a5
+CONFIG_CI_UDC=y
+CONFIG_OF_LIBFDT=y
-- 
2.18.0

  parent reply	other threads:[~2018-09-04 13:23 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-09-04 13:23 [U-Boot] [PATCH v2 01/13] pico-imx6ul: Convert to distro config Otavio Salvador
2018-09-04 13:23 ` [U-Boot] [PATCH v2 02/13] pico-imx6ul: Convert to SPL Otavio Salvador
2018-09-04 13:23 ` [U-Boot] [PATCH v2 03/13] pico-imx6ul: Add fastboot support Otavio Salvador
2018-09-04 13:23 ` [U-Boot] [PATCH v2 04/13] pico-imx6ul: Add bmode support Otavio Salvador
2018-09-04 13:23 ` [U-Boot] [PATCH v2 05/13] pico-imx6ul: Add support for the 512MB module Otavio Salvador
2018-09-04 13:23 ` [U-Boot] [PATCH v2 06/13] pico-imx7d: Update the README file Otavio Salvador
2018-09-04 14:05   ` Michael Nazzareno Trimarchi
2018-09-04 19:13     ` Otavio Salvador
2018-09-05 19:13       ` Otavio Salvador
2018-09-06  9:54         ` Stefano Babic
2018-09-06 12:17           ` Otavio Salvador
2018-09-06 13:02             ` Stefano Babic
2018-09-06 13:45   ` [U-Boot] [U-Boot,v2,06/13] " Tom Rini
2018-09-04 13:23 ` [U-Boot] [PATCH v2 07/13] pico-imx6ul: " Otavio Salvador
2018-09-04 13:23 ` [U-Boot] [PATCH v2 08/13] pico-imx6ul: Sync defconfig with new changes Otavio Salvador
2018-09-04 13:23 ` [U-Boot] [PATCH v2 09/13] pico-imx6ul: Add bootmenu to choose the baseboard Otavio Salvador
2018-09-04 13:23 ` [U-Boot] [PATCH v2 10/13] pico-imx6ul: Improve default DFU settings Otavio Salvador
2018-09-04 13:23 ` [U-Boot] [PATCH v2 11/13] pico-imx6ul: Sync README with pico-imx7d Otavio Salvador
2018-09-04 13:23 ` Otavio Salvador [this message]
2018-09-04 13:23 ` [U-Boot] [PATCH v2 13/13] pico-imx6ul: Remove CONFIG_FSL_USDHC from .h Otavio Salvador

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180904132319.27110-12-otavio@ossystems.com.br \
    --to=otavio@ossystems.com.br \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.