From mboxrd@z Thu Jan 1 00:00:00 1970 From: Heinrich Schuchardt Date: Mon, 9 Nov 2020 08:42:27 +0100 Subject: [PATCH 2/2] test: Only enable bloblist test when supported In-Reply-To: <20201108210834.2.Ia697d693062334c942f386bc584bace19b6323af@changeid> References: <20201108210834.1.I08cec35c8482583834811d48894f358277c662aa@changeid> <20201108210834.2.Ia697d693062334c942f386bc584bace19b6323af@changeid> Message-ID: <1c153a79-d9c0-3772-2fc6-a63f21f82cba@gmx.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 09.11.20 05:08, Simon Glass wrote: > This test cannot work unless CONFIG_BLOBLIST is enabled. Update it to add > that condition. > > Reported-by: Kever Yang > Signed-off-by: Simon Glass > --- > > test/Makefile | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/test/Makefile b/test/Makefile > index 1c930b31485..cdbfa61cda3 100644 > --- a/test/Makefile > +++ b/test/Makefile > @@ -2,7 +2,9 @@ > # > # (C) Copyright 2012 The Chromium Authors > > +ifneq ($(CONFIG_$(SPL_)BLOBLIST),) > obj-$(CONFIG_$(SPL_)CMDLINE) += bloblist.o > +endif > obj-$(CONFIG_$(SPL_)CMDLINE) += cmd/ > obj-$(CONFIG_$(SPL_)CMDLINE) += cmd_ut.o > obj-$(CONFIG_$(SPL_)CMDLINE) += command_ut.o > This patch conflicts with my patch [1/1] test: test/bloblist.c depends on asm/state.h https://patchwork.ozlabs.org/project/uboot/patch/20201031073806.30736-1-xypron.glpk at gmx.de/ It seems that my patch is obsoleted by the first patch of Kever's series: test: Avoid assuming sandbox board for bloblist test https://patchwork.ozlabs.org/project/uboot/patch/20201108210834.1.I08cec35c8482583834811d48894f358277c662aa at changeid/ Best regards Heinrich