wok diff syslinux/stuff/iso2exe/boot.c @ rev 21870

busybox/command_not_found: use $PATH (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Sep 25 11:06:27 2019 +0200 (2019-09-25)
parents 7a16da2c93b9
children 78bc4b109dd6
line diff
     1.1 --- a/syslinux/stuff/iso2exe/boot.c	Tue Oct 04 15:33:49 2016 +0200
     1.2 +++ b/syslinux/stuff/iso2exe/boot.c	Wed Sep 25 11:06:27 2019 +0200
     1.3 @@ -16,7 +16,7 @@
     1.4    bootfrom=\\isos\\slitaz-4.0.iso\n\
     1.5    kernel=boot/bzImage\n\
     1.6    initrd=boot/rootfs4.gz,boot/rootfs3.gz,boot/rootfs2.gz,boot/rootfs1.gz,\\slitaz\\extrafs.gz\n\
     1.7 -  rw root=/dev/null vga=normal autologin\n\n\
     1.8 +  vga=normal autologin\n\n\
     1.9    kernel=\\slitaz\\elks\n\
    1.10    root=/dev/bda1 ro\n",iso,iso,iso);
    1.11  	exit(1);
    1.12 @@ -61,7 +61,7 @@
    1.13  	if (magic > 0) {
    1.14  		char *initrd = fallback;
    1.15  
    1.16 -		fmt = "rw root=/dev/null bootfrom=%s%s magic=%lu mode=%s autologin";
    1.17 +		fmt = "bootfrom=%s%s magic=%lu mode=%s autologin";
    1.18  		if (rootfs[0]) {
    1.19  			initrd = rootfs;
    1.20  			if (rootfs[6] != '.' && !isoopen("rootfs.gz"))