Skip to content

Commit 3791c7d

Browse files
committed
remove insmods
1 parent 435fbb9 commit 3791c7d

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

IMG-builder.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ copy_file "${EFI_IMAGE_GRUB}" "${MOUNT_EFI}/boot/grub/grub.cfg"
197197

198198
### Warnings can be ignored if it says 'Installation finished. No error reported.'
199199
list_entry
200-
/usr/sbin/grub-install --target=i386-pc --no-floppy --recheck --boot-directory="${MOUNT_EFI}/boot/" --force "${LOOP_DEV}" --modules='ntfs'
200+
/usr/sbin/grub-install --target=i386-pc --no-floppy --recheck --boot-directory="${MOUNT_EFI}/boot/" --force "${LOOP_DEV}"
201201
list_catch
202202

203203
## GRUB UEFI

ISO-builder.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1108,8 +1108,8 @@ cd "${ISO_DIR}"
11081108
/usr/bin/grub-mkstandalone \
11091109
--format=i386-pc \
11101110
--output=isolinux/core.img \
1111-
--install-modules="linux16 linux normal iso9660 biosdisk memdisk search tar ls ntfs" \
1112-
--modules="linux16 linux normal configfile iso9660 biosdisk search ntfs" \
1111+
--install-modules="linux16 linux normal iso9660 biosdisk memdisk search tar ls ntfs video" \
1112+
--modules="linux16 linux normal configfile iso9660 biosdisk search ntfs video" \
11131113
--locales="" \
11141114
--fonts="" \
11151115
"boot/grub/grub.cfg=isolinux/grub.cfg" # Interne ISO grub.cfg mapping (BIOS)

config/grub/grub.cfg.img

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
search --label 'BCLD-USB' --no-floppy --set=root --hint=hd0,gpt2
55

6-
# Modules
7-
insmod ntfs
8-
insmod video
6+
# Modules, we will try to bake these in with grub-mkstandalone
7+
#insmod ntfs
8+
#insmod video
99

1010
# Grub settings
1111
set gfxpayload="keep"

0 commit comments

Comments
 (0)