wok rev 17906

syslinux: s/Dutch/Nederlands/ (thanks kubepc)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Apr 05 11:03:04 2015 +0200 (2015-04-05)
parents 0bcc2c14e027
children 3b8d7928ad58
files syslinux/receipt syslinux/stuff/iso2exe/bootiso.S
line diff
     1.1 --- a/syslinux/receipt	Sat Apr 04 21:58:38 2015 +0200
     1.2 +++ b/syslinux/receipt	Sun Apr 05 11:03:04 2015 +0200
     1.3 @@ -79,7 +79,7 @@
     1.4  de		de-latin1	de_DE	Deutsch
     1.5  de_CH\ deCH	de_CH-latin1	de_DE	Deutsch Schweiz
     1.6  sg		sg-latin1	de_DE	Deutsch Schweiz (sg)
     1.7 -nl		nl2		C	Dutch
     1.8 +nl		nl2		C	Nederlands
     1.9  gr		gr		C	Ellinika
    1.10  en		uk		en_GB	English UK
    1.11  us		us		en_US	English US
     2.1 --- a/syslinux/stuff/iso2exe/bootiso.S	Sat Apr 04 21:58:38 2015 +0200
     2.2 +++ b/syslinux/stuff/iso2exe/bootiso.S	Sun Apr 05 11:03:04 2015 +0200
     2.3 @@ -75,7 +75,7 @@
     2.4  	cmpw	(%bx), %cx
     2.5  	jnc	puts			// read fail or no isohydrid boot sector
     2.6  	popw	%es
     2.7 -	popa
     2.8 +	popa				// isolinux boot needs %es:%di and %dx
     2.9  putsret:
    2.10  	ret
    2.11  
    2.12 @@ -140,25 +140,25 @@
    2.13  	jmp	puts
    2.14  
    2.15  tst386:
    2.16 -	pushfw			// save flags
    2.17 +	pushfw				// save flags
    2.18  		// bits  15 14 13 12 11 10  9  8  7  6  5  4  3  2  1  0
    2.19  		// flags  0 NT  IOPL OF DF IF TF SF ZF  0 AF  0 PF  1 CF
    2.20  	// movb	$0x10, %ah
    2.21  	pushw	%ax
    2.22 -	popfw			// < 286 : flags[12..15] are forced 1
    2.23 -	pushfw			// = 286 : flags[12..15] are forced 0
    2.24 -	popw	%bx		// > 286 : only flags[15] is forced 0
    2.25 -	popfw			// restore flags (IOPL)
    2.26 -	addb	%ah, %bh	// test F0 and 00 cases
    2.27 +	popfw				// < 286 : flags[12..15] are forced 1
    2.28 +	pushfw				// = 286 : flags[12..15] are forced 0
    2.29 +	popw	%bx			// > 286 : only flags[15] is forced 0
    2.30 +	popfw				// restore flags (IOPL)
    2.31 +	addb	%ah, %bh		// test F0 and 00 cases
    2.32  	cmpb	%ah, %bh
    2.33  	movw	$0x100, %di
    2.34 -	jbe	is86		// C=8086/80186, Z=80286
    2.35 +	jbe	is86			// C=8086/80186, Z=80286
    2.36  is386:
    2.37 -	smsww	%ax		// not privileged
    2.38 +	smsww	%ax			// not privileged
    2.39  	andb	$1, %al
    2.40  	movw	$10, %si
    2.41  	jne	tstvcpi
    2.42 -	movl	%cr0, %eax	// privileged
    2.43 +	movl	%cr0, %eax		// privileged
    2.44  	incl	%eax
    2.45  	movb	$EXESTR(rmPaging), %al
    2.46  	js	abort
    2.47 @@ -169,7 +169,7 @@
    2.48  is86:
    2.49  	movw	comstart-end_header(%di), %si		// .com address
    2.50  	pushw	%di
    2.51 -	movb	$0x7C/2, %ch	// 31K-31.5K, > com length
    2.52 +	movb	$0x7C/2, %ch		// 31K-31.5K, > com length
    2.53  	rep
    2.54  	movsw
    2.55  	ret