From: Dirk Behme <[email protected]> Fix compilation of mkv310_image host tool
tools/mkv310_image.c: In function 'main': tools/mkv310_image.c:67: error: 'S_IRUSR' undeclared (first use in this function) tools/mkv310_image.c:67: error: (Each undeclared identifier is reported only once tools/mkv310_image.c:67: error: for each function it appears in.) tools/mkv310_image.c:67: error: 'S_IWUSR' undeclared (first use in this function) tools/mkv310_image.c:67: error: 'S_IRGRP' undeclared (first use in this function) tools/mkv310_image.c:67: error: 'S_IWGRP' undeclared (first use in this function) tools/mkv310_image.c:67: error: 'S_IROTH' undeclared (first use in this function) tools/mkv310_image.c:67: error: 'S_IWOTH' undeclared (first use in this function) resulting from a 'make smdkv310_config'. Signed-off-by: Dirk Behme <[email protected]> --- Changes in v2: Use sys/stat.h instead of linux/stat.h Note: mkv310_image is compiled for the host by the host's gcc: cd mmc_spl/board/samsung/smdkv310 gcc tools/mkv310_image.c -o tools/mkv310_mmc_spl_exec mmc_spl/board/samsung/smdkv310/tools/mkv310_image.c | 1 + 1 file changed, 1 insertion(+) Index: u-boot.git/mmc_spl/board/samsung/smdkv310/tools/mkv310_image.c =================================================================== --- u-boot.git.orig/mmc_spl/board/samsung/smdkv310/tools/mkv310_image.c +++ u-boot.git/mmc_spl/board/samsung/smdkv310/tools/mkv310_image.c @@ -26,6 +26,7 @@ #include <fcntl.h> #include <errno.h> #include <string.h> +#include <sys/stat.h> #define CHECKSUM_OFFSET (14*1024-4) #define BUFSIZE (16*1024) _______________________________________________ U-Boot mailing list [email protected] http://lists.denx.de/mailman/listinfo/u-boot

