Re: 2023.04 U-Boot Kirkwood - ZyXEL NSA325 May 20, 2024 05:45PM |
Admin Registered: 13 years ago Posts: 19,106 |
Re: 2023.04 U-Boot Kirkwood - ZyXEL NSA325 May 22, 2024 09:40PM |
Registered: 4 years ago Posts: 7 |
Re: 2023.04 U-Boot Kirkwood - ZyXEL NSA325 May 23, 2024 12:18AM |
Admin Registered: 13 years ago Posts: 19,106 |
dmesgSo I can see the complete picture, before I can advise further.
Re: 2023.04 U-Boot Kirkwood - ZyXEL NSA325 May 23, 2024 08:52AM |
Registered: 4 years ago Posts: 7 |
Re: 2023.04 U-Boot Kirkwood - ZyXEL NSA325 May 23, 2024 02:04PM |
Admin Registered: 13 years ago Posts: 19,106 |
Quote
Installation Steps
A. Preparation
A.1. UART booting
It is strongly recommmended that you try to run kwboot to test this boot image with UART booting before flashing to NAND. This is the rescue path when and if the flashing goes wrong for some reason. See example here. And to download latest ARM kwboot binary for UART booting see here.
Re: 2023.04 U-Boot Kirkwood - ZyXEL NSA325 May 23, 2024 03:09PM |
Registered: 4 years ago Posts: 7 |
Re: 2023.04 U-Boot Kirkwood - ZyXEL NSA325 May 26, 2024 07:53PM |
Registered: 4 years ago Posts: 7 |
Re: 2023.04 U-Boot Kirkwood - ZyXEL NSA325 May 27, 2024 01:56PM |
Admin Registered: 13 years ago Posts: 19,106 |
Re: 2023.04 U-Boot Kirkwood - ZyXEL NSA325 May 28, 2024 02:39PM |
Registered: 4 years ago Posts: 7 |
Re: 2023.04 U-Boot Kirkwood - ZyXEL NSA325 May 28, 2024 03:45PM |
Admin Registered: 13 years ago Posts: 19,106 |
Quote
https://forum.doozan.com/read.php?2,12096
Note 5 (Optional):
Note 5.1. To boot with systemd
After loged into Debian, run:
apt-get install systemd
And then add parameter init=/usr/bin/systemd to your u-boot env bootargs.
- For example,
fw_setenv set_bootargs 'setenv bootargs console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 $mtdparts init=/usr/bin/systemd'
- Or, if you are booting with my latest u-boot images you can also use the uEnv.txt capability to do this. In the default envs, custom_params is a variable that allows you to add extra bootargs. So add the following line to uEnv.txt:
custom_params=earlyprintk=serial init=/usr/bin/systemd
cd /boot echo "custom_params=earlyprintk=serial init=/usr/bin/systemd" > uEnv.txt sync
Re: 2023.04 U-Boot Kirkwood - ZyXEL NSA325 May 28, 2024 04:41PM |
Registered: 4 years ago Posts: 7 |
>Quote
https://forum.doozan.com/read.php?2,12096
>
> Note 5 (Optional):
>
> Note 5.1. To boot with systemd
>
> After loged into Debian, run:
>
> apt-get install systemd
> And then add parameter init=/usr/bin/systemd to
> your u-boot env bootargs.
>
> - For example,
> fw_setenv set_bootargs 'setenv bootargs
> console=ttyS0,115200 root=LABEL=rootfs
> rootdelay=10 $mtdparts init=/usr/bin/systemd'
>
> - Or, if you are booting with my latest u-boot
> images you can also use the uEnv.txt capability to
> do this. In the default envs, custom_params is a
> variable that allows you to add extra bootargs. So
> add the following line to uEnv.txt:
> custom_params=earlyprintk=serial
> init=/usr/bin/systemd
>
> cd /boot > echo "custom_params=earlyprintk=serial > init=/usr/bin/systemd" > uEnv.txt > sync >>