
12 Sep
2011
12 Sep
'11
6:38 p.m.
On Monday, September 12, 2011 00:06:45 Marek Vasut wrote:
tools/Makefile | 6 + tools/mxsboot.c | 687 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 693 insertions(+), 0 deletions(-) create mode 100644 tools/mxsboot.c
missing .gitignore update
--- /dev/null +++ b/tools/mxsboot.c
+#include <fcntl.h> +#include <malloc.h> +#include <stdint.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <sys/stat.h> +#include <sys/types.h> +#include <unistd.h>
drop the malloc.h and probably add compiler.h -mike