x86/PCI: add description for check_enable_amd_mmconf boot parameter
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / scripts / bin_size
blob43e1b360cee6970b6a22db5111c124e2f397efeb
1 #!/bin/sh
3 if [ $# = 0 ] ; then
4 echo Usage: $0 file
5 fi
7 size_dec=`stat -c "%s" $1`
8 size_hex_echo_string=`printf "%08x" $size_dec |
9 sed 's/\(..\)\(..\)\(..\)\(..\)/\\\\x\4\\\\x\3\\\\x\2\\\\x\1/g'`
10 /bin/echo -ne $size_hex_echo_string