barebox/board/ipe337/cmd_alternate.c
Sascha Hauer 50cc8c5412 Subject: [PATCH] [general] Fixed constant strings in data section issue
For practical reasons I changed all string literals assumed to be constant
to reside in .rodata subsection at end of .text section.

Signed-off-by: Carsten Schlote <schlote@vahanus.net>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
2008-04-04 14:45:04 +02:00

60 lines
1 KiB
C

#include <common.h>
#include <command.h>
#include <linux/stat.h>
#include <malloc.h>
#include <fs.h>
#define MAGIC 0x19691228
static int do_alternate (cmd_tbl_t *cmdtp, int argc, char *argv[])
{
void *buf;
size_t size;
ulong *ptr, val = 0, bitcount = 0;
if (argc != 2) {
u_boot_cmd_usage(cmdtp);
return 0;
}
buf = read_file(argv[1], &size);
if (!buf)
return 1;
ptr = buf;
if ((*ptr) != MAGIC) {
printf("Wrong magic! Expected 0x%08x, got 0x%08x.\n", MAGIC, *ptr);
return 1;
}
ptr++;
while ((ulong)ptr <= (ulong)buf + size && !(val = *ptr++))
bitcount += 32;
if (val) {
do {
if (val & 1)
break;
bitcount++;
} while (val >>= 1);
}
printf("Bitcount : %d\n", bitcount);
free(buf);
return (bitcount & 1) ? 3 : 2;
}
static const __maybe_unused char cmd_alternate_help[] =
"Usage: alternate <file>"
"\n";
U_BOOT_CMD_START(alternate)
.maxargs = CONFIG_MAXARGS,
.cmd = do_alternate,
.usage = "count zero bits in a file",
U_BOOT_CMD_HELP(cmd_alternate_help)
U_BOOT_CMD_END