syslinux pxe boot reboots every few minutes

Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
I am trying to achieve PXE Boot and install the Yocto Image on my intel Apollo Lake SoC.
What i did till now:
Created EFI/SYSLINUX Folder and placed syslinux.efi and ldlinux.e64, menu.c32 and in this folder created pxelinux.cfg folder and created "default file" with the following content:
serial 0 115200
ALLOWOPTIONS 1
SERIAL 0 115200
DEFAULT Serial console install
TIMEOUT 500
TOTALTIMEOUT 501
PROMPT 0
ui menu.c32
menu title Select kernel options and boot kernel
menu tabmsg Press [Tab] to edit, [Return] to select
LABEL Serial console install
KERNEL bzImage
APPEND initrd=initrd LABEL=install root=/dev/ram0 rootwait console=ttyS0,115200 console=tty0 console=ttyS0,115200
The system boots and displays the UI and starts loading bzImage over tftp and then while it is loading initrd image the system is reset.. It happens every time and I am thinking something related to timing may be every 5 minutes it restarts.
I am using syslinux 6.3.0 , what can be the issue here
linux yocto syslinux
add a comment |
up vote
0
down vote
favorite
I am trying to achieve PXE Boot and install the Yocto Image on my intel Apollo Lake SoC.
What i did till now:
Created EFI/SYSLINUX Folder and placed syslinux.efi and ldlinux.e64, menu.c32 and in this folder created pxelinux.cfg folder and created "default file" with the following content:
serial 0 115200
ALLOWOPTIONS 1
SERIAL 0 115200
DEFAULT Serial console install
TIMEOUT 500
TOTALTIMEOUT 501
PROMPT 0
ui menu.c32
menu title Select kernel options and boot kernel
menu tabmsg Press [Tab] to edit, [Return] to select
LABEL Serial console install
KERNEL bzImage
APPEND initrd=initrd LABEL=install root=/dev/ram0 rootwait console=ttyS0,115200 console=tty0 console=ttyS0,115200
The system boots and displays the UI and starts loading bzImage over tftp and then while it is loading initrd image the system is reset.. It happens every time and I am thinking something related to timing may be every 5 minutes it restarts.
I am using syslinux 6.3.0 , what can be the issue here
linux yocto syslinux
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am trying to achieve PXE Boot and install the Yocto Image on my intel Apollo Lake SoC.
What i did till now:
Created EFI/SYSLINUX Folder and placed syslinux.efi and ldlinux.e64, menu.c32 and in this folder created pxelinux.cfg folder and created "default file" with the following content:
serial 0 115200
ALLOWOPTIONS 1
SERIAL 0 115200
DEFAULT Serial console install
TIMEOUT 500
TOTALTIMEOUT 501
PROMPT 0
ui menu.c32
menu title Select kernel options and boot kernel
menu tabmsg Press [Tab] to edit, [Return] to select
LABEL Serial console install
KERNEL bzImage
APPEND initrd=initrd LABEL=install root=/dev/ram0 rootwait console=ttyS0,115200 console=tty0 console=ttyS0,115200
The system boots and displays the UI and starts loading bzImage over tftp and then while it is loading initrd image the system is reset.. It happens every time and I am thinking something related to timing may be every 5 minutes it restarts.
I am using syslinux 6.3.0 , what can be the issue here
linux yocto syslinux
I am trying to achieve PXE Boot and install the Yocto Image on my intel Apollo Lake SoC.
What i did till now:
Created EFI/SYSLINUX Folder and placed syslinux.efi and ldlinux.e64, menu.c32 and in this folder created pxelinux.cfg folder and created "default file" with the following content:
serial 0 115200
ALLOWOPTIONS 1
SERIAL 0 115200
DEFAULT Serial console install
TIMEOUT 500
TOTALTIMEOUT 501
PROMPT 0
ui menu.c32
menu title Select kernel options and boot kernel
menu tabmsg Press [Tab] to edit, [Return] to select
LABEL Serial console install
KERNEL bzImage
APPEND initrd=initrd LABEL=install root=/dev/ram0 rootwait console=ttyS0,115200 console=tty0 console=ttyS0,115200
The system boots and displays the UI and starts loading bzImage over tftp and then while it is loading initrd image the system is reset.. It happens every time and I am thinking something related to timing may be every 5 minutes it restarts.
I am using syslinux 6.3.0 , what can be the issue here
linux yocto syslinux
linux yocto syslinux
asked Nov 21 at 11:09
md.jamal
1114
1114
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
If SoC reboots each time after exactly same amount of time, I suppose that problem may be related to watchdog timer.
Check kernel output for something like:
iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
iTCO_wdt: Found a Apollo Lake SoC TCO device (Version=5, TCOBASE=0x0460)
iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
There you can find more info about configuring watchdog: http://www.fit-pc.com/wiki/index.php/Linux_Mint:_Watchdog_configuration
New contributor
IvanBayan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
No, the kernel is still not loaded at that time, it is still in the phase of loading initrd over tftp and store it in RAM
– md.jamal
Nov 21 at 15:51
What happens if you don't specify initrd at all? Is kernel tries to boot?
– IvanBayan
Nov 22 at 11:44
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
If SoC reboots each time after exactly same amount of time, I suppose that problem may be related to watchdog timer.
Check kernel output for something like:
iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
iTCO_wdt: Found a Apollo Lake SoC TCO device (Version=5, TCOBASE=0x0460)
iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
There you can find more info about configuring watchdog: http://www.fit-pc.com/wiki/index.php/Linux_Mint:_Watchdog_configuration
New contributor
IvanBayan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
No, the kernel is still not loaded at that time, it is still in the phase of loading initrd over tftp and store it in RAM
– md.jamal
Nov 21 at 15:51
What happens if you don't specify initrd at all? Is kernel tries to boot?
– IvanBayan
Nov 22 at 11:44
add a comment |
up vote
0
down vote
If SoC reboots each time after exactly same amount of time, I suppose that problem may be related to watchdog timer.
Check kernel output for something like:
iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
iTCO_wdt: Found a Apollo Lake SoC TCO device (Version=5, TCOBASE=0x0460)
iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
There you can find more info about configuring watchdog: http://www.fit-pc.com/wiki/index.php/Linux_Mint:_Watchdog_configuration
New contributor
IvanBayan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
No, the kernel is still not loaded at that time, it is still in the phase of loading initrd over tftp and store it in RAM
– md.jamal
Nov 21 at 15:51
What happens if you don't specify initrd at all? Is kernel tries to boot?
– IvanBayan
Nov 22 at 11:44
add a comment |
up vote
0
down vote
up vote
0
down vote
If SoC reboots each time after exactly same amount of time, I suppose that problem may be related to watchdog timer.
Check kernel output for something like:
iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
iTCO_wdt: Found a Apollo Lake SoC TCO device (Version=5, TCOBASE=0x0460)
iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
There you can find more info about configuring watchdog: http://www.fit-pc.com/wiki/index.php/Linux_Mint:_Watchdog_configuration
New contributor
IvanBayan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
If SoC reboots each time after exactly same amount of time, I suppose that problem may be related to watchdog timer.
Check kernel output for something like:
iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
iTCO_wdt: Found a Apollo Lake SoC TCO device (Version=5, TCOBASE=0x0460)
iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
There you can find more info about configuring watchdog: http://www.fit-pc.com/wiki/index.php/Linux_Mint:_Watchdog_configuration
New contributor
IvanBayan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
IvanBayan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
answered Nov 21 at 11:53
IvanBayan
612
612
New contributor
IvanBayan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
IvanBayan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
IvanBayan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
No, the kernel is still not loaded at that time, it is still in the phase of loading initrd over tftp and store it in RAM
– md.jamal
Nov 21 at 15:51
What happens if you don't specify initrd at all? Is kernel tries to boot?
– IvanBayan
Nov 22 at 11:44
add a comment |
No, the kernel is still not loaded at that time, it is still in the phase of loading initrd over tftp and store it in RAM
– md.jamal
Nov 21 at 15:51
What happens if you don't specify initrd at all? Is kernel tries to boot?
– IvanBayan
Nov 22 at 11:44
No, the kernel is still not loaded at that time, it is still in the phase of loading initrd over tftp and store it in RAM
– md.jamal
Nov 21 at 15:51
No, the kernel is still not loaded at that time, it is still in the phase of loading initrd over tftp and store it in RAM
– md.jamal
Nov 21 at 15:51
What happens if you don't specify initrd at all? Is kernel tries to boot?
– IvanBayan
Nov 22 at 11:44
What happens if you don't specify initrd at all? Is kernel tries to boot?
– IvanBayan
Nov 22 at 11:44
add a comment |
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f483183%2fsyslinux-pxe-boot-reboots-every-few-minutes%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown