Displaying 9 results from an estimated 9 matches for "bzimage_2".
Did you mean:
bzimage_1
2014 Mar 19
5
Checking CRC (of bzImage) before loading
...he system loads
from).
The requirement is to have a duplication of the Linux Image, and that
syslinux should calculate CRC of "the first image" (say bzImage_1).
If the CRC is correct then load the image, if the CRC is not correct, than
syslinux should try "the other image" (say bzImage_2).
If even that is no good do nothing.
Any suggestions as to how to implement the requirement ?
Thanks
Mau
2013 Jun 30
1
extlinux >= 5.01 menu.c32 timeout doesn't work
...le menu.c32
UI menu.c32
# Disable the boot: prompt
PROMPT 0
# 5 sec
TIMEOUT 50
# 60 sec max
TOTALTIMEOUT 600
# Default boot label
INCLUDE boot_label
MENU TITLE Boot Menu
LABEL 1
MENU LABEL System 1
LINUX /bzImage_1
APPEND console=ttyS0,115200
LABEL 2
MENU LABEL System 2
LINUX /bzImage_2
APPEND quiet console=ttyS0,115200
LABEL pxe
MENU LABEL BOOT PXE
LOCALBOOT -1
---------------------------------------
2014 Mar 19
0
Checking CRC (of bzImage) before loading
...gt;
> The requirement is to have a duplication of the Linux Image, and that
> syslinux should calculate CRC of "the first image" (say bzImage_1).
> If the CRC is correct then load the image, if the CRC is not correct, than
> syslinux should try "the other image" (say bzImage_2).
> If even that is no good do nothing.
>
> Any suggestions as to how to implement the requirement ?
A custom COM32 module. Look at ifcpu.c32 for an example of an if-else
module and the crypto functions in com32/util/
--
-Gene
2014 Mar 19
2
Checking CRC (of bzImage) before loading
...requirement is to have a duplication of the Linux Image, and that
>> syslinux should calculate CRC of "the first image" (say bzImage_1).
>> If the CRC is correct then load the image, if the CRC is not correct, than
>> syslinux should try "the other image" (say bzImage_2).
>> If even that is no good do nothing.
>>
>> Any suggestions as to how to implement the requirement ?
>
> A custom COM32 module. Look at ifcpu.c32 for an example of an if-else
> module and the crypto functions in com32/util/
>
Or we could make the Linux loader (l...
2014 Mar 20
0
Checking CRC (of bzImage) before loading
...gt;
> The requirement is to have a duplication of the Linux Image, and that
> syslinux should calculate CRC of "the first image" (say bzImage_1).
> If the CRC is correct then load the image, if the CRC is not correct, than
> syslinux should try "the other image" (say bzImage_2).
> If even that is no good do nothing.
>
> Any suggestions as to how to implement the requirement ?
You should be able to implement this logic via the embedded Lua
interpreter. I don't know whether the performance would be acceptable,
though (at least without resorting to C coding)....
2014 Mar 20
1
Checking CRC (of bzImage) before loading
...ment is to have a duplication of the Linux Image, and that
> > syslinux should calculate CRC of "the first image" (say bzImage_1).
> > If the CRC is correct then load the image, if the CRC is not correct,
> than
> > syslinux should try "the other image" (say bzImage_2).
> > If even that is no good do nothing.
> >
> > Any suggestions as to how to implement the requirement ?
>
> You should be able to implement this logic via the embedded Lua
> interpreter. I don't know whether the performance would be acceptable,
> though (at lea...
2013 Jun 28
2
extlinux >= 5.01 menu.c32 timeout doesn't work
Hi,
I am using qemu for testing new versions of syslinux before installing on an embedded computer.
Everything works fine under qemu (1.5.0), so I updated extlinux from 4.06 to 5.11-pre3 on the computer.
I found that the autostart's timeout does not work.
The timeout value is correct but nothing happens.
It worked well with extlinux 4.06...
I tried with extlinux 5.01, 5.10, 5.11-pre3 and
2013 Jun 26
2
Syslinux 6.00 released
Hallo,
I wrote am 26.06.13:
> Running "pxelinux": more problems than with 5.10.
> 5.00-pre6: all worked fine
> 5.10: the start menu (GUI) wasn't shown; "tab" showed the labels, and
> the textual menus. Invoking the labels worked.
> 6.00: no GUI start menu. "tab" showed the textual menus. Invoking
> them seems to do nothing (after some
2013 Jun 27
3
Syslinux 6.00 released
...e menu.c32
UI menu.c32
# Disable the boot: prompt
PROMPT 0
# 5 sec
TIMEOUT 50
# 60 sec max
TOTALTIMEOUT 600
# Default boot label
INCLUDE boot_label
MENU TITLE Boot Menu
LABEL 1
MENU LABEL System 1
LINUX /bzImage_1
APPEND console=ttyS0,115200
LABEL 2
MENU LABEL System 2
LINUX /bzImage_2
APPEND quiet console=ttyS0,115200
LABEL pxe
MENU LABEL BOOT PXE
LOCALBOOT -1
---------------------------------------
Since extlinux 5.10 I get:
"Initial menu has no LABEL entries!"
Thanks to Helmut report, the problem is fixed with:
INCLUDE "boot_label"
Do you hav...