Created
January 12, 2017 22:23
-
-
Save lukas2511/9de506910718efa3079892f834bf369a to your computer and use it in GitHub Desktop.
create apu2 bios update image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
all: boot.img | |
ROM_VERSION = 160311 | |
MBR = /usr/lib/syslinux/bios/mbr.bin | |
tmp/apu_tinycore.tar.bz2: | |
mkdir -p tmp | |
wget -O $@ http://pcengines.ch/file/apu_tinycore.tar.bz2 | |
tmp/apu_tinycore/.unpacked: tmp/apu_tinycore.tar.bz2 | |
mkdir -p tmp/apu_tinycore | |
bsdtar -xf $< -C tmp/apu_tinycore/ | |
touch tmp/apu_tinycore/.unpacked | |
tmp/apu2_$(ROM_VERSION).zip: | |
mkdir -p tmp | |
wget -O $@ http://www.pcengines.ch/file/apu2_$(ROM_VERSION).zip | |
tmp/apu2_$(ROM_VERSION).rom: tmp/apu2_$(ROM_VERSION).zip | |
bsdtar -xf $< -C tmp/ | |
touch $@ | |
tmp/empty.img: $(MBR) | |
mkdir -p tmp | |
dd if=/dev/zero of=$@ bs=1M count=64 | |
parted $@ mklabel msdos | |
parted $@ mkpart primary fat16 1 100% | |
parted $@ set 1 boot on | |
dd if=$< of=$@ conv=notrunc | |
tmp/fat.img: tmp/empty.img tmp/apu_tinycore/.unpacked tmp/apu2_$(ROM_VERSION).rom | |
dd if=$< of=$@ bs=512 skip=2048 | |
mformat -i $@ -h 255 -s 63 -t 9 -m 0xf8 -v "tinycore" -H 0 -N 13372511 -d 2 -H 0 :: | |
mcopy -i $@ $(wildcard tmp/apu_tinycore/*) tmp/apu2_$(ROM_VERSION).rom :: | |
syslinux --install $@ | |
boot.img: tmp/empty.img tmp/fat.img | |
cp tmp/empty.img $@ | |
dd if=tmp/fat.img of=$@ bs=512 seek=2048 | |
clean: | |
rm -rf boot.img tmp/*.img tmp/apu_tinycore tmp/*.rom |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nettes coreboot howto: https://pelican.craoc.fr/coreboot.html