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

  1. Make the default configuration for Yocto image for raspberrypi3 (meta-openembedded, meta-raspberrypi and poky submodules are present)

  2. Make sure the raspberry-pi is able to connect to the internet. Wifi Configuration

  3. Adding the following packages in the core-image bb file

    IMAGE_INSTALL_append = " ntp
    ntpdate
    "

    Core Image bb file

    Core Image Example

  4. Build an image and flash it on SD card.

  5. Check if the following executables are available in the /usr/sbin/ location: ntpd and ntpdate

Getting ntpdate to work

  1. 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.
  2. Stop the ntpd service using the command ntpd stop
  3. 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
  4. To set the time in sync with the server using the following command : ntpdate server-name
  5. Start the ntpd service using the command ntpd start
  6. Enter the command date to check the current time. The date will be in sync with UTC Time
  7. 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. NTP Socket in Use

Output Images

Procedure to get NTP Working

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:

Additional NTP Packages

Buildroot NTP Package

The following link has the details to get the ntp package on buildroot build system for BeagleBone Device:

Buildroot NTP Package

References

  1. NTP Pool of Servers