From: Xufeng Zhang <xufeng.zhang@windriver.com>
To: Saul Wold <sgw@linux.intel.com>
Cc: openembedded-core@lists.openembedded.org
Subject: Re: [V2 PATCH] ntp: Resolve some abnormal behaviors
Date: Fri, 31 May 2013 14:17:33 +0800 [thread overview]
Message-ID: <51A8407D.7050506@windriver.com> (raw)
In-Reply-To: <51A83CC7.5010401@linux.intel.com>
On 05/31/2013 02:01 PM, Saul Wold wrote:
>
> This should be sent to openembedded-devel@lists.openembedded.org list.
Sorry for my mistake and thanks for your remind!
Thanks,
Xufeng
>
> Thanks
> Sau!
>
> On 05/31/2013 02:36 PM, Xufeng Zhang wrote:
>> The main changes include:
>> 1). Add ntp:ntp(user:group) to system.
>> 2). Running ntpd dameon as ntp:ntp.
>> 3). Move relevant files from /usr/bin to /usr/sbin.
>> 4). Add crypto support.
>>
>> [YOCTO #4567]
>> [ CQID: WIND00417282 ]
>>
>> Signed-off-by: Xufeng Zhang <xufeng.zhang@windriver.com>
>> ---
>> meta-networking/recipes-support/ntp/files/ntpd | 8 ++++----
>> meta-networking/recipes-support/ntp/files/ntpdate | 6 +++---
>> meta-networking/recipes-support/ntp/ntp.inc | 20
>> ++++++++++++--------
>> 3 files changed, 19 insertions(+), 15 deletions(-)
>>
>> diff --git a/meta-networking/recipes-support/ntp/files/ntpd
>> b/meta-networking/recipes-support/ntp/files/ntpd
>> index ae50f13..285f5c0 100755
>> --- a/meta-networking/recipes-support/ntp/files/ntpd
>> +++ b/meta-networking/recipes-support/ntp/files/ntpd
>> @@ -1,7 +1,7 @@
>> #! /bin/sh
>> #
>> # ntpd init.d script for ntpdc from ntp.isc.org
>> -test -x /usr/bin/ntpd -a -r /etc/ntp.conf || exit 0
>> +test -x /usr/sbin/ntpd -a -r /etc/ntp.conf || exit 0
>> # rcS contains TICKADJ
>> test -r /etc/default/rcS && . /etc/default/rcS
>>
>> @@ -9,9 +9,9 @@ test -r /etc/default/rcS && . /etc/default/rcS
>> settick(){
>> # If TICKADJ is set we *must* adjust it before we start,
>> because the
>> # driftfile relies on the correct setting
>> - test -n "$TICKADJ" -a -x /usr/bin/tickadj && {
>> + test -n "$TICKADJ" -a -x /usr/sbin/tickadj && {
>> echo -n "Setting tick to $TICKADJ: "
>> - /usr/bin/tickadj "$TICKADJ"
>> + /usr/sbin/tickadj "$TICKADJ"
>> echo "done"
>> }
>> }
>> @@ -21,7 +21,7 @@ startdaemon(){
>> # this. If ntpd seems to disappear after a while assume TICKADJ
>> # above is set to a totally incorrect value.
>> echo -n "Starting ntpd: "
>> - start-stop-daemon --start -x /usr/bin/ntpd -- -p
>> /var/run/ntp.pid "$@"
>> + start-stop-daemon --start -x /usr/sbin/ntpd -- -u ntp:ntp -p
>> /var/run/ntp.pid "$@"
>> echo "done"
>> }
>> stopdaemon(){
>> diff --git a/meta-networking/recipes-support/ntp/files/ntpdate
>> b/meta-networking/recipes-support/ntp/files/ntpdate
>> index ab0551c..17b64d1 100755
>> --- a/meta-networking/recipes-support/ntp/files/ntpdate
>> +++ b/meta-networking/recipes-support/ntp/files/ntpdate
>> @@ -1,8 +1,8 @@
>> #!/bin/sh
>>
>> -PATH=/sbin:/bin:/usr/bin
>> +PATH=/sbin:/bin:/usr/bin:/usr/sbin
>>
>> -test -x /usr/bin/ntpdate || exit 0
>> +test -x /usr/sbin/ntpdate || exit 0
>>
>> if test -f /etc/default/ntpdate ; then
>> . /etc/default/ntpdate
>> @@ -40,7 +40,7 @@ if [ -x /usr/bin/lockfile-create ]; then
>> LOCKTOUCHPID="$!"
>> fi
>>
>> -if /usr/bin/ntpdate -s $OPTS $NTPSERVERS 2>/dev/null; then
>> +if /usr/sbin/ntpdate -s $OPTS $NTPSERVERS 2>/dev/null; then
>> if [ "$UPDATE_HWCLOCK" = "yes" ]; then
>> hwclock --systohc || :
>> fi
>> diff --git a/meta-networking/recipes-support/ntp/ntp.inc
>> b/meta-networking/recipes-support/ntp/ntp.inc
>> index 79e7401..b52a7d6 100644
>> --- a/meta-networking/recipes-support/ntp/ntp.inc
>> +++ b/meta-networking/recipes-support/ntp/ntp.inc
>> @@ -24,14 +24,19 @@ SRC_URI =
>> "http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/ntp-${PV}.tar.g
>> file://sntp \
>> "
>>
>> -inherit autotools update-rc.d systemd
>> +inherit autotools update-rc.d systemd useradd
>>
>> # The ac_cv_header_readline_history is to stop ntpdc depending on
>> either
>> # readline or curses
>> -EXTRA_OECONF += "--with-net-snmp-config=no --without-ntpsnmpd
>> ac_cv_header_readline_history_h=no"
>> +EXTRA_OECONF += "--with-net-snmp-config=no --without-ntpsnmpd
>> ac_cv_header_readline_history_h=no --with-binsubdir=sbin"
>> CFLAGS_append = " -DPTYS_ARE_GETPT -DPTYS_ARE_SEARCHED"
>>
>> -PACKAGECONFIG ??= ""
>> +USERADD_PACKAGES = "${PN}"
>> +USERADD_PARAM_${PN} = "--system --home /etc/ntp \
>> + --no-create-home --shell /bin/false \
>> + --user-group ntp"
>> +
>> +PACKAGECONFIG ??= "openssl"
>> PACKAGECONFIG[openssl] = "--with-openssl-libdir=${STAGING_LIBDIR} \
>> --with-openssl-incdir=${STAGING_INCDIR} \
>> --with-crypto, \
>> @@ -91,10 +96,10 @@ RCONFLICTS_ntpdate += "ntpdate-systemd"
>>
>> RSUGGESTS_${PN} = "iana-etc"
>>
>> -FILES_${PN} = "${bindir}/ntpd ${sysconfdir}/ntp.conf
>> ${sysconfdir}/init.d/ntpd ${sbindir} ${libdir}"
>> -FILES_${PN}-tickadj = "${bindir}/tickadj"
>> -FILES_${PN}-utils = "${bindir}"
>> -FILES_ntpdate = "${bindir}/ntpdate \
>> +FILES_${PN} = "${sbindir}/ntpd ${sysconfdir}/ntp.conf
>> ${sysconfdir}/init.d/ntpd ${libdir}"
>> +FILES_${PN}-tickadj = "${sbindir}/tickadj"
>> +FILES_${PN}-utils = "${sbindir}"
>> +FILES_ntpdate = "${sbindir}/ntpdate \
>> ${sysconfdir}/network/if-up.d/ntpdate-sync \
>> ${bindir}/ntpdate-sync \
>> ${sysconfdir}/default/ntpdate \
>> @@ -122,4 +127,3 @@ else
>> fi
>> fi
>> }
>> -
>>
>
prev parent reply other threads:[~2013-05-31 6:05 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-31 5:36 [V2 PATCH] ntp: Resolve some abnormal behaviors Xufeng Zhang
2013-05-31 6:01 ` Saul Wold
2013-05-31 6:17 ` Xufeng Zhang [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=51A8407D.7050506@windriver.com \
--to=xufeng.zhang@windriver.com \
--cc=openembedded-core@lists.openembedded.org \
--cc=sgw@linux.intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.