From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andy Fleming Date: Mon, 22 Oct 2012 15:49:57 -0500 Subject: [U-Boot] [PATCH 1/4] powerpc/t4qds: Add T4QDS board In-Reply-To: <1349975620-21163-1-git-send-email-yorksun@freescale.com> References: <1349975620-21163-1-git-send-email-yorksun@freescale.com> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Thu, Oct 11, 2012 at 12:13 PM, York Sun wrote: > The T4240QDS is a high-performance computing evaluation, development and > test platform supporting the T4240 QorIQ Power Architecture? processor. > > + > +#define __USB_PHY_TYPE utmi > + > +#define CONFIG_EXTRA_ENV_SETTINGS \ > + "hwconfig=fsl_ddr:ctlr_intlv=3way_4KB," \ > + "bank_intlv=auto;" \ > + "usb1:dr_mode=host,phy_type=" MK_STR(__USB_PHY_TYPE) "\0"\ > + "netdev=eth0\0" \ > + "uboot=" MK_STR(CONFIG_UBOOTPATH) "\0" \ > + "ubootaddr=" MK_STR(CONFIG_SYS_TEXT_BASE) "\0" \ Please note that MK_STR() has been eliminated in the top of tree. Please use __stringify() in the future. I have fixed this patch, but future patches should use __stringify. Andy