All of lore.kernel.org
 help / color / mirror / Atom feed
From: Stefano Babic <sbabic@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 0/9] i.MX6: Engicam: Move common config code
Date: Wed, 31 May 2017 10:48:34 +0200	[thread overview]
Message-ID: <d2a4389a-b29c-d69b-0922-2166bddd6c35@denx.de> (raw)
In-Reply-To: <1494589708-15276-1-git-send-email-jagan@openedev.com>

Hi Jagan,

On 12/05/2017 13:48, Jagan Teki wrote:
> From: Jagan Teki <jagan@amarulasolutions.com>
> 
> This series move configs code used by different i.MX6 SOM's into
> single config file, include/configs/imx6-engicam.h
> 
> (1) Generate single config file imx6-engicam.h
> (2) Drop 4 som based config files
> (3) Add Kconfig entry for PHY_MICREL_KSZ9021
> 
> thanks!
> Jagan.
> 
> Jagan Teki (9):
>   mmc: fsl_esdhc: Move non DM_MMC code
>   engicam: Move SPL mmc configs under CONFIG_SPL_BUILD
>   icorem6: Recover missing nand defconfig
>   drivers: net: Kconfig: Add PHY_MICREL_KSZ9021 entry
>   engicam: Move PHY configs to defconfig
>   icorem6: Remove unused FEC configs
>   engicam: Set console env on board_late_init
>   engicam: Add fdt_addr env value based on cpu_type
>   engicam: Generate single config file
> 
>  board/engicam/common/board.c                       |   5 +
>  board/engicam/geam6ul/Kconfig                      |   2 +-
>  board/engicam/icorem6/Kconfig                      |   2 +-
>  board/engicam/icorem6_rqs/Kconfig                  |   2 +-
>  board/engicam/isiotmx6ul/Kconfig                   |   2 +-
>  configs/imx6qdl_icore_mmc_defconfig                |   2 +
>  configs/imx6qdl_icore_nand_defconfig               |  47 +++++
>  configs/imx6qdl_icore_rqs_mmc_defconfig            |   3 +
>  configs/imx6ul_geam_mmc_defconfig                  |   2 +
>  configs/imx6ul_geam_nand_defconfig                 |   2 +
>  configs/imx6ul_isiot_emmc_defconfig                |   2 +
>  configs/imx6ul_isiot_mmc_defconfig                 |   2 +
>  configs/imx6ul_isiot_nand_defconfig                |   2 +
>  drivers/mmc/fsl_esdhc.c                            |  30 ++--
>  drivers/net/phy/Kconfig                            |   8 +
>  .../configs/{imx6qdl_icore.h => imx6-engicam.h}    |  47 +++--
>  include/configs/imx6qdl_icore_rqs.h                | 149 ----------------
>  include/configs/imx6ul_geam.h                      | 197 --------------------
>  include/configs/imx6ul_isiot.h                     | 198 ---------------------
>  19 files changed, 127 insertions(+), 577 deletions(-)
>  create mode 100644 configs/imx6qdl_icore_nand_defconfig
>  rename include/configs/{imx6qdl_icore.h => imx6-engicam.h} (84%)
>  delete mode 100644 include/configs/imx6qdl_icore_rqs.h
>  delete mode 100644 include/configs/imx6ul_geam.h
>  delete mode 100644 include/configs/imx6ul_isiot.h
> 

Applied to u-boot-imx -master, thanks !

Best regards,
Stefano Babic


-- 
=====================================================================
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================

      parent reply	other threads:[~2017-05-31  8:48 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-05-12 11:48 [U-Boot] [PATCH 0/9] i.MX6: Engicam: Move common config code Jagan Teki
2017-05-12 11:48 ` [U-Boot] [PATCH 1/9] mmc: fsl_esdhc: Move non DM_MMC code in #ifndef CONFIG_DM_MMC Jagan Teki
2017-05-12 11:48 ` [U-Boot] [PATCH 2/9] engicam: Move SPL mmc configs under CONFIG_SPL_BUILD Jagan Teki
2017-05-12 11:48 ` [U-Boot] [PATCH 3/9] icorem6: Recover missing nand defconfig Jagan Teki
2017-05-12 11:48 ` [U-Boot] [PATCH 4/9] drivers: net: Kconfig: Add PHY_MICREL_KSZ9021 entry Jagan Teki
2017-05-12 11:48 ` [U-Boot] [PATCH 5/9] engicam: Move PHY configs to defconfig Jagan Teki
2017-05-12 11:48 ` [U-Boot] [PATCH 6/9] icorem6: Remove unused FEC configs Jagan Teki
2017-05-12 11:48 ` [U-Boot] [PATCH 7/9] engicam: Set console env on board_late_init Jagan Teki
2017-05-12 11:48 ` [U-Boot] [PATCH 8/9] engicam: Add fdt_addr env value based on cpu_type Jagan Teki
2017-05-12 11:48 ` [U-Boot] [PATCH 9/9] engicam: Generate single config file Jagan Teki
2017-05-22 10:35 ` [U-Boot] [PATCH 0/9] i.MX6: Engicam: Move common config code Jagan Teki
2017-05-31  8:48 ` Stefano Babic [this message]

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=d2a4389a-b29c-d69b-0922-2166bddd6c35@denx.de \
    --to=sbabic@denx.de \
    --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.