[How To] Use U-Boot SNTP May 05, 2014 10:34PM |
Admin Registered: 13 years ago Posts: 19,092 |
setenv dnsip 192.168.0.1 setenv gatewayip 192.168.0.1 setenv netmask 255.255.255.0
ping 8.8.8.8Using egiga0 device
dns montpelier.caltech.edu192.12.19.20
sntp 192.12.19.20Date: 2014-02-09 Time: 7:37:35
usb_set_bootargs=setenv bootargs console=$console root=$usb_root rootdelay=$usb_rootdelay rootfstype=$usb_rootfstype $mtdparts $usb_custom_params
Re: [How To] Use U-Boot SNTP May 06, 2014 11:15PM |
Registered: 10 years ago Posts: 2 |
fw_setenv ipaddr 192.168.0.100 # Replace with correct IP for your ubooted device fw_setenv dnsip 192.168.0.1 # Replace with correct IP for your DNS server fw_setenv gatewayip 192.168.0.1 # Replace with correct IP for your network gateway fw_setenv netmask 255.255.255.0 # Replace with the correct netmask for your network fw_setenv bootcmd "dns pool.ntp.org ntpserverip; sntp; `fw_printenv bootcmd | sed 's/^bootcmd=//'`"
fw_setenv autoload no # This is *VERY* important, otherwise it will attempt to TFTP boot after getting an IP and bootloop forever, and the ONLY way out will be a serial cable, netconsole WILL NOT work! fw_setenv bootcmd "dhcp; dns pool.ntp.org ntpserverip; sntp; `fw_printenv bootcmd | sed 's/^bootcmd=//'`"
Re: [How To] Use U-Boot SNTP May 07, 2014 02:21AM |
Admin Registered: 13 years ago Posts: 19,092 |
fw_setenv bootcmd "dhcp; dns pool.ntp.org ntpserverip; sntp; `fw_printcmd bootcmd | sed 's/^bootcmd=//'`"should it be?
fw_setenv bootcmd "dhcp; dns pool.ntp.org ntpserverip; sntp; `fw_printenv bootcmd | sed 's/^bootcmd=//'`"
Re: [How To] Use U-Boot SNTP May 07, 2014 06:31AM |
Registered: 10 years ago Posts: 2 |
jcromero
Re: [How To] Use U-Boot SNTP April 11, 2021 04:00AM |
GoFlexNet> setenv dnsip 8.8.8.8 setenv dnsip 8.8.8.8 GoFlexNet> dns pool.ntp.org ntpserverip dns pool.ntp.org ntpserverip 182.176.15.141 GoFlexNet> date date Date: 2000-01-01 (Sunday) Time: 0:00:00 GoFlexNet> sntp sntp GoFlexNet> date date Date: 2000-01-01 (Sunday) Time: 0:00:00
Re: [How To] Use U-Boot SNTP April 11, 2021 04:37PM |
Admin Registered: 13 years ago Posts: 19,092 |
jcromero
Re: [How To] Use U-Boot SNTP April 12, 2021 01:42AM |
jcromero
Re: [How To] Use U-Boot SNTP April 20, 2021 03:48PM |
Re: [How To] Use U-Boot SNTP April 20, 2021 03:57PM |
Admin Registered: 13 years ago Posts: 19,092 |
jcromero
Re: [How To] Use U-Boot SNTP April 21, 2021 09:15AM |
Re: [How To] Use U-Boot SNTP June 30, 2021 07:51PM |
Registered: 5 years ago Posts: 1 |
Re: [How To] Use U-Boot SNTP June 30, 2021 08:51PM |
Admin Registered: 13 years ago Posts: 19,092 |