[oe-commits] [openembedded-core] 04/47: systemd-boot: create output dir if it doesn't exist

git at git.openembedded.org git at git.openembedded.org
Sun May 21 14:03:53 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 ef129943d935384093824cc3bc24318578b2f946
Author: Ed Bartosh <ed.bartosh at linux.intel.com>
AuthorDate: Wed May 17 12:07:47 2017 +0300

    systemd-boot: create output dir if it doesn't exist
    
    build_efi_cfg function creates configuration files for
    systemd-boot entries in 'S' directory. This directory
    may not exist when api is called, which breaks the build.
    
    Creating the directory if it doesn't exist should fix
    this issue.
    
    Signed-off-by: Ed Bartosh <ed.bartosh at linux.intel.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/classes/systemd-boot.bbclass | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/classes/systemd-boot.bbclass b/meta/classes/systemd-boot.bbclass
index 4e69a2c..4412fb1 100644
--- a/meta/classes/systemd-boot.bbclass
+++ b/meta/classes/systemd-boot.bbclass
@@ -99,6 +99,8 @@ python build_efi_cfg() {
             bb.fatal('OVERRIDES not defined')
 
         entryfile = "%s/%s.conf" % (s, label)
+        if not os.path.exists(s):
+            os.makedirs(s)
         d.appendVar("SYSTEMD_BOOT_ENTRIES", " " + entryfile)
         try:
             entrycfg = open(entryfile, "w")

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


More information about the Openembedded-commits mailing list