rulimine/host/hgen.sh

17 lines
243 B
Bash
Raw Normal View History

#! /bin/sh
2022-02-10 16:50:55 +03:00
set -e
LC_ALL=C
export LC_ALL
cat <<EOF
const uint8_t binary_limine_hdd_bin_data[] = {
EOF
od -v -An -t x1 <limine-bios-hdd.bin | "$SED" '/^$/d;s/ */ /g;s/ *$//g;s/ /, 0x/g;s/^, / /g;s/$/,/g;s/^ , / /g'
cat <<EOF
};
EOF