rulimine/Makefile

40 lines
1.2 KiB
Makefile
Raw Normal View History

.PHONY: all clean echfs-test ext2-test
2019-05-15 07:08:56 +03:00
all:
$(MAKE) -C src all
2019-05-15 07:08:56 +03:00
clean:
$(MAKE) -C src clean
2020-03-25 01:39:02 +03:00
echfs-test: all
2020-03-25 01:39:02 +03:00
$(MAKE) -C test
2020-03-25 03:04:18 +03:00
rm -f test.img
2020-03-25 01:39:02 +03:00
dd if=/dev/zero bs=1M count=0 seek=64 of=test.img
2020-04-15 14:21:44 +03:00
parted -s test.img mklabel gpt
parted -s test.img mkpart primary 2048s 6143s
parted -s test.img mkpart primary 6144s 131038s
echfs-utils -g -p1 test.img quick-format 512
2020-04-21 11:18:21 +03:00
echfs-utils -g -p1 test.img import test/test.elf boot/test.elf
echfs-utils -g -p1 test.img import test/qloader2.cfg boot/qloader2.cfg
2020-04-15 14:21:44 +03:00
./qloader2-install src/qloader2.bin test.img 2048
2020-03-25 03:04:18 +03:00
qemu-system-x86_64 -hda test.img -monitor stdio
2020-04-15 21:15:38 +03:00
ext2-test: all
$(MAKE) -C test
rm -rf test.img test_image/
mkdir test_image
dd if=/dev/zero bs=1M count=0 seek=64 of=test.img
parted -s test.img mklabel msdos
parted -s test.img mkpart primary 1 100%
sudo losetup -Pf --show test.img > loopback_dev
sudo mkfs.ext2 `cat loopback_dev`p1
sudo mount `cat loopback_dev`p1 test_image
sudo cp test/test.elf test_image
sudo cp test/qloader2.cfg test_image
sync
sudo umount test_image/
sudo losetup -d `cat loopback_dev`
rm -rf test_image loopback_dev
./qloader2-install src/qloader2.bin test.img
2020-04-15 14:21:44 +03:00
qemu-system-x86_64 -hda test.img -monitor stdio