From 195c436f84dce8525670fa6bc6db7916a4702f57 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Tue, 26 Nov 2013 14:56:29 +0100 Subject: build system: use od -b instead of od -t x1 od -t is not available in non-CONFIG_DESKTOPed busybox od Signed-off-by: Denys Vlasenko --- scripts/mkconfigs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts') diff --git a/scripts/mkconfigs b/scripts/mkconfigs index db94fcc44..6a26fe1dd 100755 --- a/scripts/mkconfigs +++ b/scripts/mkconfigs @@ -65,11 +65,11 @@ static const char bbconfig_config_bz2[] ALIGN1 = {" grep -e '^# CONFIG_' -e '^CONFIG_' "$config" \ | bzip2 -1 | dd bs=2 skip=1 2>/dev/null \ -| od -v -t x1 \ +| od -v -b \ | sed -e 's/^[^ ]*//' \ -e 's/ //g' \ -e '/^$/d' \ - -e 's/\(..\)/0x\1,/g' + -e 's/\(...\)/0\1,/g' echo "};" echo "#endif" -- cgit v1.2.3