File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1273,7 +1273,7 @@ def _add_limine_bootloader(
1273
1273
1274
1274
try :
1275
1275
# The `limine-bios.sys` file contains stage 3 code.
1276
- shutil .copy (limine_path / 'limine-bios.sys' , self .target / 'boot' )
1276
+ shutil .copy (limine_path / 'limine-bios.sys' , self .target / 'boot' / 'limine' )
1277
1277
1278
1278
# `limine bios-install` deploys the stage 1 and 2 to the
1279
1279
SysCommand (f'arch-chroot { self .target } limine bios-install { parent_dev_path } ' , peek_output = True )
@@ -1282,7 +1282,7 @@ def _add_limine_bootloader(
1282
1282
1283
1283
hook_command = (
1284
1284
f'/usr/bin/limine bios-install { parent_dev_path } '
1285
- f' && /usr/bin/cp /usr/share/limine/limine-bios.sys /boot/'
1285
+ f' && /usr/bin/cp /usr/share/limine/limine-bios.sys /boot/limine/ '
1286
1286
)
1287
1287
1288
1288
hook_contents = f'''[Trigger]
@@ -1325,7 +1325,7 @@ def _add_limine_bootloader(
1325
1325
config_contents += f'\n /Arch Linux ({ kernel } { variant } )\n '
1326
1326
config_contents += '\n ' .join ([f' { it } ' for it in entry ]) + '\n '
1327
1327
1328
- config_path = self .target / 'boot' / 'limine.conf'
1328
+ config_path = self .target / 'boot' / 'limine' / 'limine .conf'
1329
1329
config_path .write_text (config_contents )
1330
1330
1331
1331
self .helper_flags ['bootloader' ] = "limine"
You can’t perform that action at this time.
0 commit comments