[oe] [meta-oe][PATCH] zram: remove bash dependency from init script

Andre McCurdy armccurdy at gmail.com
Tue Feb 10 01:20:47 UTC 2015


Signed-off-by: Andre McCurdy <armccurdy at gmail.com>
---
 meta-oe/recipes-extended/zram/zram/init | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-oe/recipes-extended/zram/zram/init b/meta-oe/recipes-extended/zram/zram/init
index d126169..7b6cbf4 100644
--- a/meta-oe/recipes-extended/zram/zram/init
+++ b/meta-oe/recipes-extended/zram/zram/init
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 ### BEGIN INIT INFO
 # Provides: zram
 # Required-Start:
@@ -26,7 +26,7 @@ start() {
     #default Factor % = 90 change this value here or create /etc/default/zram
     FACTOR=90
     #& put the above single line in /etc/default/zram with the value you want
-    [ -f /etc/default/zram ] && source /etc/default/zram || true
+    [ -f /etc/default/zram ] && . /etc/default/zram || true
     factor=$FACTOR # percentage
 
     # get the amount of memory in the machine
-- 
1.9.1




More information about the Openembedded-devel mailing list