Merge pull request #65 from zment4/mkisofs_makefile_pr
Add ISO generation to Makefile
This commit is contained in:
commit
96c0bbfc64
1 changed files with 3 additions and 0 deletions
3
Makefile
3
Makefile
|
@ -59,6 +59,9 @@ img: dirs bootsect kernel
|
|||
dd if=./bin/$(BOOTSECT) of=$(IMG) conv=notrunc bs=512 seek=0 count=1
|
||||
dd if=./bin/$(KERNEL) of=$(IMG) conv=notrunc bs=512 seek=1 count=2048
|
||||
|
||||
iso: img
|
||||
mkisofs -pad -b boot.img -R -o boot.iso boot.img
|
||||
|
||||
qemu-mac: img
|
||||
qemu-system-i386 -drive format=raw,file=$(IMG) -d cpu_reset -monitor stdio -device sb16 -audiodev coreaudio,id=coreaudio,out.frequency=48000,out.channels=2,out.format=s32
|
||||
|
||||
|
|
Reference in a new issue