Displaying 4 results from an estimated 4 matches for "nappend".
Did you mean:
append
2011 Jan 29
2
How to make a bootable USB flash drive manually?
...r-xr-x 1 root root 7.5M 2011-01-29 03:11 initrd.gz
-rwxr-xr-x 1 root root 700M 2010-01-21 12:19 ubuntu-8.04.4-desktop-i386.iso
-rwxr-xr-x 1 root root 1.9M 2011-01-29 03:11 vmlinuz
root at martin-desktop:~#
10) create /media/syslinux.cfg file
root at martin-desktop:~# printf "default vmlinuz\nappend
initrd=initrd.gz\n" > /media/syslinux.cfg
root at martin-desktop:~#
11) umount /mnt(.iso loop device) and /media(USB flash drive)
root at martin-desktop:~# umount /mnt/ && umount /media/
root at martin-desktop:~#
12) install syslinux to /dev/sdb1
root at martin-desktop:~# sysl...
2012 Jul 01
2
booting FreeDOS ISO image using syslinux hangs
...o /media/usb and copied iso
image(http://www.freedos.org/download/download/fd11src.iso), memdisk
image and created syslinux.cfg:
root at debian64:~# cp freedos.iso
/home/martin/syslinux-4.05/memdisk/memdisk /media/usb
root at debian64:~# printf 'LABEL FreeDOS\nLINUX memdisk\nINITRD
freedos.iso\nAPPEND iso\n' > /media/usb/syslinux.cfg
root at debian64:~# cat /media/usb/syslinux.cfg
LABEL FreeDOS
LINUX memdisk
INITRD freedos.iso
APPEND iso
root at debian64:~# ls -l /media/usb/
total 80960
-rwxr-xr-x 1 root root 82804736 juuli 1 20:10 freedos.iso
-rwxr-xr-x 1 root root 32256 juuli 1 20:...
2019 Jan 25
0
[klibc:update-dash] parser: use pgetc_eatbnl() in more places
...c = syntax == SQSYNTAX ? pgetc() : pgetc_eatbnl();
}
}
endword:
@@ -1132,7 +1124,7 @@ parseredir: {
np = (union node *)stalloc(sizeof (struct nfile));
if (c == '>') {
np->nfile.fd = 1;
- c = pgetc();
+ c = pgetc_eatbnl();
if (c == '>')
np->type = NAPPEND;
else if (c == '|')
@@ -1145,7 +1137,7 @@ parseredir: {
}
} else { /* c == '<' */
np->nfile.fd = 0;
- switch (c = pgetc()) {
+ switch (c = pgetc_eatbnl()) {
case '<':
if (sizeof (struct nfile) != sizeof (struct nhere)) {
np = (union node *)s...
2020 Mar 28
0
[klibc:update-dash] dash: parser: use pgetc_eatbnl() in more places
...c = syntax == SQSYNTAX ? pgetc() : pgetc_eatbnl();
}
}
endword:
@@ -1132,7 +1124,7 @@ parseredir: {
np = (union node *)stalloc(sizeof (struct nfile));
if (c == '>') {
np->nfile.fd = 1;
- c = pgetc();
+ c = pgetc_eatbnl();
if (c == '>')
np->type = NAPPEND;
else if (c == '|')
@@ -1145,7 +1137,7 @@ parseredir: {
}
} else { /* c == '<' */
np->nfile.fd = 0;
- switch (c = pgetc()) {
+ switch (c = pgetc_eatbnl()) {
case '<':
if (sizeof (struct nfile) != sizeof (struct nhere)) {
np = (union node *)s...