[oe-commits] [openembedded-core] 03/24: initramfs-framework: Allow directories with spaces

git at git.openembedded.org git at git.openembedded.org
Tue Sep 12 15:54:33 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit afc73dd6346325de0a39997a3045b6659f9658b5
Author: Otavio Salvador <otavio at ossystems.com.br>
AuthorDate: Mon Sep 11 14:37:16 2017 -0300

    initramfs-framework: Allow directories with spaces
    
    When mdev module loads the Linux kernel modules, it can visit
    directories with spaces. To allow that, we must quote the variable
    otherwise it misunderstand it arguments as multiple entries.
    
    Fixes:
    
    ,----
    | Freeing unused kernel memory: 3072K (80d00000 - 81000000)
    | cat: can't open '/sys/devices/platform/Vivante': No such file or directory
    | cat: can't open 'GCCore/modalias': No such file or directory
    `----
    
    Signed-off-by: Otavio Salvador <otavio at ossystems.com.br>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-core/initrdscripts/initramfs-framework/mdev | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-core/initrdscripts/initramfs-framework/mdev b/meta/recipes-core/initrdscripts/initramfs-framework/mdev
index a5df1d7..9814d97 100644
--- a/meta/recipes-core/initrdscripts/initramfs-framework/mdev
+++ b/meta/recipes-core/initrdscripts/initramfs-framework/mdev
@@ -1,5 +1,5 @@
 #!/bin/sh
-# Copyright (C) 2011 O.S. Systems Software LTDA.
+# Copyright (C) 2011, 2017 O.S. Systems Software LTDA.
 # Licensed on MIT
 
 mdev_enabled() {
@@ -25,6 +25,6 @@ mdev_run() {
 
 	# load modules for devices
 	find /sys -name modalias | while read m; do
-		load_kernel_module $(cat $m)
+		load_kernel_module $(cat "$m")
 	done
 }

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list