NTP Configuration on Yocto (Raspberry Pi 3B) - dhirajbennadi/ECEN5713-FinalProjectResources GitHub Wiki
Overview
This page contains the details to enable ntp and ntpdate packages to synchronize the system timing to the current UTC Time
The Network Time Protocol (NTP) is a networking protocol for clock synchronization between computer systems over packet-switched, variable-latency data networks
Implementation Steps
-
Make the default configuration for Yocto image for raspberrypi3 (meta-openembedded, meta-raspberrypi and poky submodules are present)
-
Make sure the raspberry-pi is able to connect to the internet. Wifi Configuration
-
Adding the following packages in the core-image bb file
IMAGE_INSTALL_append = " ntp
ntpdate
" -
Build an image and flash it on SD card.
-
Check if the following executables are available in the /usr/sbin/ location: ntpd and ntpdate
Getting ntpdate to work
- Enter the command
date
to check if the current time. The date appears to be in sync with the first time the clock synchronization was done. - Stop the ntpd service using the command
ntpd stop
- Query the ntp pool servers for availability using the command
ntpdate -q server-name
Any of the server from the following links can be choosen. NTP Servers This only queries the servers and does not set the time - To set the time in sync with the server using the following command :
ntpdate server-name
- Start the ntpd service using the command
ntpd start
- Enter the command
date
to check the current time. The date will be in sync with UTC Time - Once the current time is set, the hardware clock is also overwritten with UTC Time. Even on reboot of the system, the time is in sync with UTC Time
Issues
On trying to set the time using the ntpdate server-name
command, ntp is a daemon running in the background and doesnt allow to be overriden.
To use ntpdate along with ntp, use the command ntpdate -u server-name
. This command will run on a different port and set the time.
Output Images
Additional Information on the NTP Packages
The above information includes details for the packages: ntpd
and ntpdate
Additional packages can be included based on the use case which are provided at the following link:
Buildroot NTP Package
The following link has the details to get the ntp package on buildroot build system for BeagleBone Device: