rulimine/Makefile

98 lines
3.1 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
2020-05-11 20:52:54 +03:00
cp src/qloader2.bin ./
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
2020-04-21 16:12:00 +03:00
echfs-utils -g -p1 test.img import test/qloader2.cfg qloader2.cfg
2020-04-15 14:21:44 +03:00
./qloader2-install src/qloader2.bin test.img 2048
qemu-system-x86_64 -hda test.img -debugcon 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
2020-04-24 15:16:48 +03:00
parted -s test.img mklabel gpt
parted -s test.img mkpart primary 2048s 6143s
parted -s test.img mkpart primary 6144s 131038s
sudo losetup -Pf --show test.img > loopback_dev
sudo partprobe `cat loopback_dev`
2020-04-24 15:16:48 +03:00
sudo mkfs.ext2 `cat loopback_dev`p2
sudo mount `cat loopback_dev`p2 test_image
sudo mkdir test_image/boot
sudo cp test/test.elf test_image/boot/
sudo cp test/qloader2.cfg test_image/
sync
sudo umount test_image/
sudo losetup -d `cat loopback_dev`
rm -rf test_image loopback_dev
2020-04-24 15:16:48 +03:00
./qloader2-install src/qloader2.bin test.img 2048
qemu-system-x86_64 -hda test.img -debugcon stdio
2020-05-01 18:19:29 +03:00
fat32-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 gpt
parted -s test.img mkpart primary 2048s 6143s
parted -s test.img mkpart primary 6144s 131038s
sudo losetup -Pf --show test.img > loopback_dev
sudo partprobe `cat loopback_dev`
2020-05-01 18:19:29 +03:00
sudo mkfs.fat -F 32 `cat loopback_dev`p2
sudo mount `cat loopback_dev`p2 test_image
sudo mkdir test_image/boot
sudo cp test/test.elf test_image/boot/
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 2048
qemu-system-x86_64 -hda test.img -debugcon stdio
fat32-test-big-clusters: all
$(MAKE) -C test
rm -rf test.img test_image/
mkdir test_image
# Setup partitions
dd if=/dev/zero bs=1M count=0 seek=512 of=test.img
parted -s test.img mklabel gpt
parted -s test.img mkpart primary 2048s 6143s
parted -s test.img mkpart primary 6144s 1042432s
sudo losetup -Pf --show test.img > loopback_dev
sudo partprobe `cat loopback_dev`
sudo mkfs.fat -s 8 -F 32 `cat loopback_dev`p2
sudo mount `cat loopback_dev`p2 test_image
sudo mkdir test_image/boot
# Copy some random files to fill up the fats to span multiple clusters.
# This will make the test more credible.
sudo find ./src -type f -exec cp -n {} test_image/ \;
sudo find ./src -type f -exec cp -n {} test_image/boot/ \;
# Copy the actual important files
sudo cp test/test.elf test_image/boot/
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 2048
qemu-system-x86_64 -hda test.img -debugcon stdio