Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[uefi] enable 32bit uefi support #3574

Merged
merged 1 commit into from
Oct 29, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions packages/tools/installer/scripts/installer
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,8 @@ do_install_quick() {
cp $TMPDIR/part1/syslinux.cfg $TMPDIR/part1/EFI/BOOT
cp /usr/share/syslinux/bootx64.efi $TMPDIR/part1/EFI/BOOT
cp /usr/share/syslinux/ldlinux.e64 $TMPDIR/part1/EFI/BOOT
cp /usr/share/syslinux/bootx32.efi $TMPDIR/part1/EFI/BOOT
cp /usr/share/syslinux/ldlinux.e32 $TMPDIR/part1/EFI/BOOT
fi
sync

Expand Down
4 changes: 4 additions & 0 deletions packages/tools/syslinux/package.mk
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ makeinstall_host() {
cp bios/mbr/gptmbr.bin $ROOT/$TOOLCHAIN/share/syslinux
cp efi64/efi/syslinux.efi $ROOT/$TOOLCHAIN/share/syslinux/bootx64.efi
cp efi64/com32/elflink/ldlinux/ldlinux.e64 $ROOT/$TOOLCHAIN/share/syslinux
cp efi32/efi/syslinux.efi $ROOT/$TOOLCHAIN/share/syslinux/bootx32.efi
cp efi32/com32/elflink/ldlinux/ldlinux.e32 $ROOT/$TOOLCHAIN/share/syslinux
}

makeinstall_target() {
Expand All @@ -96,4 +98,6 @@ makeinstall_target() {
cp bios/mbr/gptmbr.bin $INSTALL/usr/share/syslinux
cp efi64/efi/syslinux.efi $INSTALL/usr/share/syslinux/bootx64.efi
cp efi64/com32/elflink/ldlinux/ldlinux.e64 $INSTALL/usr/share/syslinux
cp efi32/efi/syslinux.efi $INSTALL/usr/share/syslinux/bootx32.efi
cp efi32/com32/elflink/ldlinux/ldlinux.e32 $INSTALL/usr/share/syslinux
}
2 changes: 2 additions & 0 deletions scripts/mkimage
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,8 @@ EOF
mkdir -p "$OE_TMP/EFI/BOOT"
cp $ROOT/$TOOLCHAIN/share/syslinux/bootx64.efi "$OE_TMP/EFI/BOOT"
cp $ROOT/$TOOLCHAIN/share/syslinux/ldlinux.e64 "$OE_TMP/EFI/BOOT"
cp $ROOT/$TOOLCHAIN/share/syslinux/bootx32.efi "$OE_TMP/EFI/BOOT"
cp $ROOT/$TOOLCHAIN/share/syslinux/ldlinux.e32 "$OE_TMP/EFI/BOOT"
cat << EOF > "$OE_TMP"/EFI/BOOT/syslinux.cfg
DEFAULT installer

Expand Down