mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
zram: remove bash dependency from init script
Signed-off-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
parent
714a004cc1
commit
81508befad
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user