wok diff BootProg/receipt @ rev 24479

BootProg: nasm 2.15.05 support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Feb 18 11:32:41 2022 +0000 (2022-02-18)
parents 04472f031354
children d77ab883a8b3
line diff
     1.1 --- a/BootProg/receipt	Fri Feb 18 10:06:45 2022 +0000
     1.2 +++ b/BootProg/receipt	Fri Feb 18 11:32:41 2022 +0000
     1.3 @@ -15,8 +15,10 @@
     1.4  # Rules to configure and make the package.
     1.5  compile_rules()
     1.6  {
     1.7 +	mkdir -p $src && cd $src
     1.8  	for i in bootex boot16 boot32 ; do
     1.9 -		nasm $stuff/$i.asm -f bin -o $i.bin -l $i.lst
    1.10 +		cp $stuff/$i.asm .
    1.11 +		nasm $i.asm -f bin -o $i.bin -l $i.lst -O0
    1.12  	done
    1.13  	sed '1,/^exit 1/!d' $stuff/bootprog.sh > bootprog
    1.14  	tar czf - boot16.bin boot32.bin bootex.bin > set.tar.gz