9
0
Fork 0

imd: provide dummy imd_command_setenv

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 <l.stach@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Lucas Stach 2014-12-17 11:58:11 +01:00 committed by Sascha Hauer
parent d7dc46d5d6
commit b2e8ce4b76
1 changed files with 7 additions and 0 deletions

View File

@ -22,6 +22,13 @@
#include <getopt.h>
#include <malloc.h>
#include <fs.h>
#ifndef CONFIG_CMD_IMD
int imd_command_setenv(const char *variable_name, const char *value)
{
return -ENOSYS;
}
#endif
#endif
/*