wok view gpxe/stuff/url_list.u @ rev 19216
Add coreutils-multicall (GNU Coreutils all-in-one, like Busybox; 4 times lighter than ordinary Coreutils)
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Wed Jun 15 17:27:10 2016 +0300 (2016-06-15) |
parents | |
children |
line source
1 --- gpxe-0.9.3/src/usr/autoboot.c
2 +++ gpxe-0.9.3/src/usr/autoboot.c
3 @@ -229,9 +229,14 @@
4 set_url ( buf, forced_url.url );
5 }
6 while (1) {
7 - if ( buf[0] ) {
8 - printf ( "Booting from filename \"%s\"\n", buf );
9 - return boot_filename ( buf );
10 + while ( buf[0] ) {
11 + char *p;
12 + for ( p = buf; *p && *p != ','; p++ );
13 + if ( *p ) *p++ = 0;
14 + set_url ( buf, buf );
15 + printf ( "Booting from filename \"%s\"\n", buf );
16 + if ( boot_filename ( buf ) == 0 ) return 0;
17 + strcpy( buf, p );
18 }
20 /* No filename; try the root path */