the buildfile nightmare continues....

i am still having problems getting my boot image to work… it starts to boot the floppy but when its done printing all the “…”'s it locks up… anyone know why? im really stuck on this one. I’ve created my build file right from the examples in the manual…

the build file im using…


shell.bld




[virtual=x86,bios] .bootstrap = {
startup-bios
PATH=/proc/boot procnto
}

[+script] .script = {
devc-con -n9 &
reopen /dev/con1
seedres
[+session] fesh
}
libc.so.1
[data=copy]
devc-con
seedres
fesh
[type=link] /usr/lib/ldqnx.so.1=/proc/boot/libc.so.1



\





im doing a: mkifs shell.bld shell.o
then im mounting a qnx boot floppy and:
cp ./shell.o /floppy/.boot

can anyone help ??


vince

still no work… any ther ideas?

vince


Previously, Super User wrote in qdn.public.qnxrtp.os:

vince <> lab-101@usa.net> > wrote:
i am still having problems getting my boot image to work… it starts to boot the floppy but when its done printing all the “…”'s it locks up… anyone know why? im really stuck on this one. I’ve created my build file right from the examples in the manual…

the build file im using…


shell.bld




[virtual=x86,bios] .bootstrap = {
startup-bios
PATH=/proc/boot procnto
}

[+script] .script = {

this should be startup-script, not .script

devc-con -n9 &
reopen /dev/con1
seedres
[+session] fesh
}
libc.so.1
[data=copy]
devc-con
seedres
fesh
[type=link] /usr/lib/ldqnx.so.1=/proc/boot/libc.so.1



\





im doing a: mkifs shell.bld shell.o
then im mounting a qnx boot floppy and:
cp ./shell.o /floppy/.boot

can anyone help ??


vince


cburgess@qnx.com

vince <lab-101@usa.net> wrote:

i am still having problems getting my boot image to work… it starts to boot the floppy but when its done printing all the “…”'s it locks up… anyone know why? im really stuck on this one. I’ve created my build file right from the examples in the manual…

the build file im using…



shell.bld




[virtual=x86,bios] .bootstrap = {
startup-bios
PATH=/proc/boot procnto
}

[+script] .script = {

this should be startup-script, not .script

devc-con -n9 &
reopen /dev/con1
seedres
[+session] fesh
}
libc.so.1
[data=copy]
devc-con
seedres
fesh
[type=link] /usr/lib/ldqnx.so.1=/proc/boot/libc.so.1





im doing a: mkifs shell.bld shell.o
then im mounting a qnx boot floppy and:
cp ./shell.o /floppy/.boot

can anyone help ??



vince


cburgess@qnx.com

%@#$$#@$@# Super User!

Super User <root@qnx.com> wrote:

vince <> lab-101@usa.net> > wrote:
i am still having problems getting my boot image to work… it starts to boot the floppy but when its done printing all the “…”'s it locks up… anyone know why? im really stuck on this one. I’ve created my build file right from the examples in the manual…

the build file im using…



shell.bld




[virtual=x86,bios] .bootstrap = {
startup-bios
PATH=/proc/boot procnto
}

[+script] .script = {

this should be startup-script, not .script

devc-con -n9 &
reopen /dev/con1
seedres
[+session] fesh
}
libc.so.1
[data=copy]
devc-con
seedres
fesh
[type=link] /usr/lib/ldqnx.so.1=/proc/boot/libc.so.1





im doing a: mkifs shell.bld shell.o
then im mounting a qnx boot floppy and:
cp ./shell.o /floppy/.boot

can anyone help ??



vince


cburgess@qnx.com


cburgess@qnx.com

I don’t see +compress option in the ‘virtual’ statement. That should
mean your image might be fairly large and if it exceeds 632Kb you’re
very likely to see exactly that effect.

  • igor

vince wrote:

still no work… any ther ideas?

vince

Previously, Super User wrote in qdn.public.qnxrtp.os:
vince <> lab-101@usa.net> > wrote:
i am still having problems getting my boot image to work… it starts to boot the floppy but when its done printing all the “…”'s it locks up… anyone know why? im really stuck on this one. I’ve created my build file right from the examples in the manual…

the build file im using…


shell.bld




[virtual=x86,bios] .bootstrap = {
startup-bios
PATH=/proc/boot procnto
}

[+script] .script = {

this should be startup-script, not .script

devc-con -n9 &
reopen /dev/con1
seedres
[+session] fesh
}
libc.so.1
[data=copy]
devc-con
seedres
fesh
[type=link] /usr/lib/ldqnx.so.1=/proc/boot/libc.so.1



\





im doing a: mkifs shell.bld shell.o
then im mounting a qnx boot floppy and:
cp ./shell.o /floppy/.boot

can anyone help ??


vince


cburgess@qnx.com

The following script worked for me…

[virtual=x86,bios] boot = {
startup-bios
PATH=/proc/boot procnto
}

[+script] startup-script = {
devc-con -n9 &
reopen /dev/con1
[+session] fesh
}
[type=link] /usr/lib/ldqnx.so.1=/proc/boot/libc.so.1
libc.so.1
[data=copy]
devc-con
fesh

vince <lab-101@usa.net> wrote:

still no work… any ther ideas?

vince



Previously, Super User wrote in qdn.public.qnxrtp.os:
vince <> lab-101@usa.net> > wrote:
i am still having problems getting my boot image to work… it starts to boot the floppy but when its done printing all the “…”'s it locks up… anyone know why? im really stuck on this one. I’ve created my build file right from the examples in the manual…

the build file im using…


shell.bld




[virtual=x86,bios] .bootstrap = {
startup-bios
PATH=/proc/boot procnto
}

[+script] .script = {

this should be startup-script, not .script

devc-con -n9 &
reopen /dev/con1
seedres
[+session] fesh
}
libc.so.1
[data=copy]
devc-con
seedres
fesh
[type=link] /usr/lib/ldqnx.so.1=/proc/boot/libc.so.1



\





im doing a: mkifs shell.bld shell.o
then im mounting a qnx boot floppy and:
cp ./shell.o /floppy/.boot

can anyone help ??


vince


cburgess@qnx.com


cburgess@qnx.com

It does not have to be ‘startup-script’ by the way. Any name is good as
long as there is +script attribute.

Colin Burgess wrote:

The following script worked for me…

[virtual=x86,bios] boot = {
startup-bios
PATH=/proc/boot procnto
}

[+script] startup-script = {
devc-con -n9 &
reopen /dev/con1
[+session] fesh
}
[type=link] /usr/lib/ldqnx.so.1=/proc/boot/libc.so.1
libc.so.1
[data=copy]
devc-con
fesh

vince <> lab-101@usa.net> > wrote:
still no work… any ther ideas?

vince

Previously, Super User wrote in qdn.public.qnxrtp.os:
vince <> lab-101@usa.net> > wrote:
i am still having problems getting my boot image to work… it starts to boot the floppy but when its done printing all the “…”'s it locks up… anyone know why? im really stuck on this one. I’ve created my build file right from the examples in the manual…

the build file im using…


shell.bld




[virtual=x86,bios] .bootstrap = {
startup-bios
PATH=/proc/boot procnto
}

[+script] .script = {

this should be startup-script, not .script

devc-con -n9 &
reopen /dev/con1
seedres
[+session] fesh
}
libc.so.1
[data=copy]
devc-con
seedres
fesh
[type=link] /usr/lib/ldqnx.so.1=/proc/boot/libc.so.1



\





im doing a: mkifs shell.bld shell.o
then im mounting a qnx boot floppy and:
cp ./shell.o /floppy/.boot

can anyone help ??


vince


cburgess@qnx.com

\

cburgess@qnx.com

the +compress option did the trick… thanks!

vince

the +compress option did the trick… thanks!!!

vince

On Mon, 30 Oct 2000 09:03:18 +0000, vince <lab-101@usa.net> wrote:

i am still having problems getting my boot image to work… it starts to boot the floppy but when its done printing all the “…”'s it locks up… anyone know why? im really stuck on this one. I’ve created my build file right from the examples in the manual…

the build file im using…


shell.bld




[virtual=x86,bios] .bootstrap = {
startup-bios
PATH=/proc/boot procnto
}

[+script] .script = {
devc-con -n9 &
reopen /dev/con1
seedres
[+session] fesh
}
libc.so.1
[data=copy]
devc-con
seedres
fesh
[type=link] /usr/lib/ldqnx.so.1=/proc/boot/libc.so.1



\





im doing a: mkifs shell.bld shell.o
then im mounting a qnx boot floppy and:
cp ./shell.o /floppy/.boot

can anyone help ??


vince