[oe-commits] Richard Tollerton : initscripts: make hostname.sh coreutils-compatible

git at git.openembedded.org git at git.openembedded.org
Fri Jul 18 23:14:09 UTC 2014


Module: openembedded-core.git
Branch: master-next
Commit: acb8674e498468088d867ffae9a458caa08d95d5
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=acb8674e498468088d867ffae9a458caa08d95d5

Author: Richard Tollerton <rich.tollerton at ni.com>
Date:   Thu Jul 17 16:56:56 2014 -0500

initscripts: make hostname.sh coreutils-compatible

inetutils and busybox hostname utils support `hostname -F`; coreutils
hostname doesn't. So just use `cat` instead.

Signed-off-by: Richard Tollerton <rich.tollerton at ni.com>
Signed-off-by: Ben Shelton <ben.shelton at ni.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/recipes-core/initscripts/initscripts-1.0/hostname.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-core/initscripts/initscripts-1.0/hostname.sh b/meta/recipes-core/initscripts/initscripts-1.0/hostname.sh
index 78fb91c..95287cc 100755
--- a/meta/recipes-core/initscripts/initscripts-1.0/hostname.sh
+++ b/meta/recipes-core/initscripts/initscripts-1.0/hostname.sh
@@ -16,7 +16,7 @@ fi
 
 # Busybox hostname doesn't support -b so we need implement it on our own
 if [ -f /etc/hostname ];then
-	hostname -F /etc/hostname
+	hostname `cat /etc/hostname`
 elif [ -z "$HOSTNAME" -o "$HOSTNAME" = "(none)" -o ! -z "`echo $HOSTNAME | sed -n '/^[0-9]*\.[0-9].*/p'`" ] ; then
 	hostname localhost
 fi



More information about the Openembedded-commits mailing list