All of lore.kernel.org
 help / color / mirror / Atom feed
From: Saul Wold <sgw@linux.intel.com>
To: Patches and discussions about the oe-core layer
	<openembedded-core@lists.openembedded.org>
Subject: Re: [PATCH] initscripts: test whether /etc/init.d/hwclock.sh exists
Date: Tue, 13 Mar 2012 17:20:27 -0700	[thread overview]
Message-ID: <4F5FE44B.5080309@linux.intel.com> (raw)
In-Reply-To: <1331666080-25116-1-git-send-email-obi@opendreambox.org>

On 03/13/2012 12:14 PM, Andreas Oberritter wrote:
> * bootmisc.sh executes /etc/init.d/hwclock.sh, which
>    is optional (depends on CONFIG_HWCLOCK in busybox).
>
> Signed-off-by: Andreas Oberritter<obi@opendreambox.org>
> ---
>   .../initscripts/initscripts-1.0/bootmisc.sh        |    4 ++--
>   meta/recipes-core/initscripts/initscripts_1.0.bb   |    2 +-
>   2 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/meta/recipes-core/initscripts/initscripts-1.0/bootmisc.sh b/meta/recipes-core/initscripts/initscripts-1.0/bootmisc.sh
> index 5b86e79..4f76cb4 100755
> --- a/meta/recipes-core/initscripts/initscripts-1.0/bootmisc.sh
> +++ b/meta/recipes-core/initscripts/initscripts-1.0/bootmisc.sh
> @@ -65,14 +65,14 @@ fi
>   # Set the system clock from hardware clock
>   # If the timestamp is more recent than the current time,
>   # use the timestamp instead.
> -/etc/init.d/hwclock.sh start
> +test -x /etc/init.d/hwclock.sh&&  /etc/init.d/hwclock.sh start
>   if test -e /etc/timestamp
>   then
>   	SYSTEMDATE=`date -u +%4Y%2m%2d%2H%2M`
>   	read TIMESTAMP<  /etc/timestamp
>   	if [ ${TIMESTAMP} -gt $SYSTEMDATE ]; then
>   		date -u ${TIMESTAMP#????}${TIMESTAMP%????????}
> -		/etc/init.d/hwclock.sh stop
> +		test -x /etc/init.d/hwclock.sh&&  /etc/init.d/hwclock.sh stop
>   	fi
>   fi
>   : exit 0
> diff --git a/meta/recipes-core/initscripts/initscripts_1.0.bb b/meta/recipes-core/initscripts/initscripts_1.0.bb
> index f3dc852..829694b 100644
> --- a/meta/recipes-core/initscripts/initscripts_1.0.bb
> +++ b/meta/recipes-core/initscripts/initscripts_1.0.bb
> @@ -3,7 +3,7 @@ DESCRIPTION = "Initscripts provide the basic system startup initialization scrip
>   SECTION = "base"
>   LICENSE = "GPLv2"
>   LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
> -PR = "r133"
> +PR = "r134"
>
>   INHIBIT_DEFAULT_DEPS = "1"
>

Merged into OE-Core

Thanks
	Sau!



      reply	other threads:[~2012-03-14  0:29 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-03-13 19:14 [PATCH] initscripts: test whether /etc/init.d/hwclock.sh exists Andreas Oberritter
2012-03-14  0:20 ` Saul Wold [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=4F5FE44B.5080309@linux.intel.com \
    --to=sgw@linux.intel.com \
    --cc=openembedded-core@lists.openembedded.org \
    /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.