From 518cca6711f737f44ff74a5ac1308de8c9b49e78 Mon Sep 17 00:00:00 2001 From: Andrew Bresticker Date: Wed, 12 Sep 2018 10:25:26 -0700 Subject: initramfs-framework: Don't use 'tr' tr is available in busybox, but not in toybox. Just use sed instead. Signed-off-by: Andrew Bresticker Signed-off-by: Richard Purdie --- meta/recipes-core/initrdscripts/initramfs-framework/init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-core/initrdscripts/initramfs-framework/init b/meta/recipes-core/initrdscripts/initramfs-framework/init index 37527a840a..3c7e09422d 100755 --- a/meta/recipes-core/initrdscripts/initramfs-framework/init +++ b/meta/recipes-core/initrdscripts/initramfs-framework/init @@ -84,7 +84,7 @@ mount -t sysfs sysfs /sys # populate bootparam environment for p in `cat /proc/cmdline`; do opt=`echo $p | cut -d'=' -f1` - opt=`echo $opt | tr '.-' '__'` + opt=`echo $opt | sed -e 'y/.-/__/'` if [ "`echo $p | cut -d'=' -f1`" = "$p" ]; then eval "bootparam_${opt}=true" else -- cgit 1.2.3-korg