From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vipin Kumar Date: Tue, 19 Jul 2011 09:21:44 +0530 Subject: [U-Boot] [PATCH v3 1/9] Use ALL-y style instead of ifeq blocks for better readability In-Reply-To: <1311005361-26241-2-git-send-email-daniel.schwierzeck@googlemail.com> References: <1310569869-31810-1-git-send-email-daniel.schwierzeck@googlemail.com> <1311005361-26241-1-git-send-email-daniel.schwierzeck@googlemail.com> <1311005361-26241-2-git-send-email-daniel.schwierzeck@googlemail.com> Message-ID: <4E24FF50.1070203@st.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 7/18/2011 9:39 PM, Daniel Schwierzeck wrote: > diff --git a/board/spear/spear300/config.mk b/board/spear/spear300/config.mk > index 11da2c3..5848ef8 100644 > --- a/board/spear/spear300/config.mk > +++ b/board/spear/spear300/config.mk > @@ -25,7 +25,7 @@ > > CONFIG_SYS_TEXT_BASE = 0x00700000 > > -ALL += $(obj)u-boot.img > +ALL-y += $(obj)u-boot.img > > # Environment variables in NAND > ifeq ($(ENV),NAND) > diff --git a/board/spear/spear310/config.mk b/board/spear/spear310/config.mk > index 2b59c39..f8a6bdb 100644 > --- a/board/spear/spear310/config.mk > +++ b/board/spear/spear310/config.mk > @@ -25,7 +25,7 @@ > > CONFIG_SYS_TEXT_BASE = 0x00700000 > > -ALL += $(obj)u-boot.img > +ALL-y += $(obj)u-boot.img > > # Environment variables in NAND > ifeq ($(ENV),NAND) > diff --git a/board/spear/spear320/config.mk b/board/spear/spear320/config.mk > index 2b59c39..f8a6bdb 100644 > --- a/board/spear/spear320/config.mk > +++ b/board/spear/spear320/config.mk > @@ -25,7 +25,7 @@ > > CONFIG_SYS_TEXT_BASE = 0x00700000 > > -ALL += $(obj)u-boot.img > +ALL-y += $(obj)u-boot.img > > # Environment variables in NAND > ifeq ($(ENV),NAND) > diff --git a/board/spear/spear600/config.mk b/board/spear/spear600/config.mk > index 11da2c3..5848ef8 100644 > --- a/board/spear/spear600/config.mk > +++ b/board/spear/spear600/config.mk > @@ -25,7 +25,7 @@ > > CONFIG_SYS_TEXT_BASE = 0x00700000 > > -ALL += $(obj)u-boot.img > +ALL-y += $(obj)u-boot.img > > # Environment variables in NAND > ifeq ($(ENV),NAND) Acked-by : Vipin Kumar