summaryrefslogtreecommitdiff
path: root/extensions/writeexts.py
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/writeexts.py')
-rw-r--r--extensions/writeexts.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/extensions/writeexts.py b/extensions/writeexts.py
index a135eadb..647f3742 100644
--- a/extensions/writeexts.py
+++ b/extensions/writeexts.py
@@ -754,7 +754,15 @@ class WriteExtension(Extension):
'''
self.status(msg='Creating extlinux.conf')
- config = os.path.join(real_root, 'extlinux.conf')
+ # To be compatible with u-boot, create the extlinux.conf file in
+ # /extlinux/ rather than /
+ # Syslinux, however, requires this to be in /, so create a symlink
+ # as well
+ config_path = os.path.join(real_root, 'extlinux')
+ os.makedirs(config_path)
+ config = os.path.join(config_path, 'extlinux.conf')
+ os.symlink('extlinux/extlinux.conf', os.path.join(real_root,
+ 'extlinux.conf'))
''' Please also update the documentation in the following files
if you change these default kernel args: