From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from metis.ext.pengutronix.de ([2001:6f8:1178:4:290:27ff:fe1d:cc33]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1XyIcK-0003ZU-VF for barebox@lists.infradead.org; Tue, 09 Dec 2014 11:06:11 +0000 Received: from dude.hi.4.pengutronix.de ([10.1.0.7] helo=dude.pengutronix.de.) by metis.ext.pengutronix.de with esmtp (Exim 4.72) (envelope-from ) id 1XyIby-0008IO-SQ for barebox@lists.infradead.org; Tue, 09 Dec 2014 12:05:46 +0100 From: Lucas Stach Date: Tue, 9 Dec 2014 12:05:44 +0100 Message-Id: <1418123146-13235-3-git-send-email-l.stach@pengutronix.de> In-Reply-To: <1418123146-13235-1-git-send-email-l.stach@pengutronix.de> References: <1418123146-13235-1-git-send-email-l.stach@pengutronix.de> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "barebox" Errors-To: barebox-bounces+u.kleine-koenig=pengutronix.de@lists.infradead.org Subject: [PATCH 3/5] imd: provide dummy imd_command_setenv To: barebox@lists.infradead.org If CONFIG_CMD_IMD is not set there is no imd_command_setenv in the barebox binary that can be linked to. Although the whole imd infrastructure will be removed by the linker later in the build process as soon as it figures out that nothing inside barebox is using it, we still have to provide a dummy function to keep the build going. Fixes: In function `imd_command': undefined reference to `imd_command_setenv' Signed-off-by: Lucas Stach --- include/image-metadata.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/include/image-metadata.h b/include/image-metadata.h index 34dae5ce3454..00aae6c98449 100644 --- a/include/image-metadata.h +++ b/include/image-metadata.h @@ -112,6 +112,13 @@ static inline void imd_used(const void *unused) #define IMD_USED(_name) \ imd_used(&__barebox_imd_##_name) +#ifndef CONFIG_CMD_IMD +int imd_command_setenv(const char *variable_name, const char *value) +{ + return -ENOSYS; +} +#endif + #endif /* __BAREBOX__ */ #endif /* __INCLUDE_IMAGE_METADTA_H */ -- 2.1.3 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox