diff options
Diffstat (limited to 'scripts/lib/wic/plugins/source')
-rw-r--r-- | scripts/lib/wic/plugins/source/isoimage-isohybrid.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/lib/wic/plugins/source/isoimage-isohybrid.py b/scripts/lib/wic/plugins/source/isoimage-isohybrid.py index 8440581629..ed59d85962 100644 --- a/scripts/lib/wic/plugins/source/isoimage-isohybrid.py +++ b/scripts/lib/wic/plugins/source/isoimage-isohybrid.py | |||
@@ -60,7 +60,7 @@ class IsoImagePlugin(SourcePlugin): | |||
60 | """ | 60 | """ |
61 | Create loader-specific (syslinux) config | 61 | Create loader-specific (syslinux) config |
62 | """ | 62 | """ |
63 | splash = os.path.join(cr_workdir, "/ISO/boot/splash.jpg") | 63 | splash = os.path.join(cr_workdir, "ISO/boot/splash.jpg") |
64 | if os.path.exists(splash): | 64 | if os.path.exists(splash): |
65 | splashline = "menu background splash.jpg" | 65 | splashline = "menu background splash.jpg" |
66 | else: | 66 | else: |
@@ -105,7 +105,7 @@ class IsoImagePlugin(SourcePlugin): | |||
105 | msger.error("configfile is specified but failed to " | 105 | msger.error("configfile is specified but failed to " |
106 | "get it from %s." % configfile) | 106 | "get it from %s." % configfile) |
107 | else: | 107 | else: |
108 | splash = os.path.join(cr_workdir, "/EFI/boot/splash.jpg") | 108 | splash = os.path.join(cr_workdir, "EFI/boot/splash.jpg") |
109 | if os.path.exists(splash): | 109 | if os.path.exists(splash): |
110 | splashline = "menu background splash.jpg" | 110 | splashline = "menu background splash.jpg" |
111 | else: | 111 | else: |