diff options
author | Jason Wessel <jason.wessel@windriver.com> | 2013-09-17 13:32:13 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-09-30 22:11:56 +0100 |
commit | ec9f4c3c25544e7613058113f283658ce604c937 (patch) | |
tree | 9819fea83603b342cbeb9230cc6e6983b8a8992e /meta/recipes-devtools | |
parent | fde291198386dae7eca868276d5e1a7b069fda58 (diff) | |
download | poky-ec9f4c3c25544e7613058113f283658ce604c937.tar.gz |
syslinux.bbclass, syslinux: Update to syslinux 6.01
A newer version of syslinux is required for an EFI enabled isohybrid.
This is used for the the capability to generate 3 types of ISO images,
all of which can be booted off a USB device or HDD if copied with dd.
1) PC BIOS only ISO
2) EFI only ISO
3) EFI + PC BIOS ISO
The syslinux.bbclass required a minor tweak because a few .c32
libraries require dynamic loading from the created media as of
syslinux 5 and up. This was a good time to also fix the
duplication of the AUTO_SYSLINUXMENU block.
[YOCTO #4100]
(From OE-Core rev: 17d74fbd09e377e100423e1a73b9d4ce761a21d7)
Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/syslinux/syslinux_6.01.bb (renamed from meta/recipes-devtools/syslinux/syslinux_4.07.bb) | 26 |
1 files changed, 16 insertions, 10 deletions
diff --git a/meta/recipes-devtools/syslinux/syslinux_4.07.bb b/meta/recipes-devtools/syslinux/syslinux_6.01.bb index bba5dda584..4438ea8330 100644 --- a/meta/recipes-devtools/syslinux/syslinux_4.07.bb +++ b/meta/recipes-devtools/syslinux/syslinux_6.01.bb | |||
@@ -2,19 +2,21 @@ DESCRIPTION = "A multi-purpose linux bootloader" | |||
2 | HOMEPAGE = "http://syslinux.zytor.com/" | 2 | HOMEPAGE = "http://syslinux.zytor.com/" |
3 | LICENSE = "GPLv2+" | 3 | LICENSE = "GPLv2+" |
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \ | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \ |
5 | file://README;beginline=35;endline=41;md5=f7249a750bc692d1048b2626752aa415" | 5 | file://README;beginline=35;endline=41;md5=558f2c71cb1fb9ba511ccd4858e48e8a" |
6 | 6 | ||
7 | # If you really want to run syslinux, you need mtools. We just want the | 7 | # If you really want to run syslinux, you need mtools. We just want the |
8 | # ldlinux.* stuff for now, so skip mtools-native | 8 | # ldlinux.* stuff for now, so skip mtools-native |
9 | DEPENDS = "nasm-native util-linux" | 9 | DEPENDS = "nasm-native util-linux" |
10 | PR = "r0" | ||
11 | 10 | ||
12 | SRC_URI = "${KERNELORG_MIRROR}/linux/utils/boot/syslinux/4.xx/syslinux-${PV}.tar.bz2" | 11 | SRC_URI = "${KERNELORG_MIRROR}/linux/utils/boot/syslinux/6.xx/syslinux-${PV}.tar.bz2" |
13 | 12 | ||
14 | SRC_URI[md5sum] = "9ff6e1b94efab931fb4717b600d88779" | 13 | SRC_URI[md5sum] = "6945ee89e29119d459baed4937bbc534" |
15 | SRC_URI[sha256sum] = "1240a4e4219b518bdaef78931b6e901befeff35e6894ac6db785115848a7a05a" | 14 | SRC_URI[sha256sum] = "83a04cf81e6a46b80ee5a321926eea095af3498b04317e3674b46c125c7a5b43" |
16 | 15 | ||
17 | COMPATIBLE_HOST = '(x86_64|i.86).*-(linux|freebsd.*)' | 16 | COMPATIBLE_HOST = '(x86_64|i.86).*-(linux|freebsd.*)' |
17 | # Don't let the sanity checker trip on the 32 bit real mode BIOS binaries | ||
18 | INSANE_SKIP_${PN}-misc = "arch" | ||
19 | INSANE_SKIP_${PN}-chain = "arch" | ||
18 | 20 | ||
19 | EXTRA_OEMAKE = " \ | 21 | EXTRA_OEMAKE = " \ |
20 | BINDIR=${bindir} SBINDIR=${sbindir} LIBDIR=${libdir} \ | 22 | BINDIR=${bindir} SBINDIR=${sbindir} LIBDIR=${libdir} \ |
@@ -28,21 +30,25 @@ do_configure() { | |||
28 | sed -e 's,win32/\S*,,g' -i Makefile | 30 | sed -e 's,win32/\S*,,g' -i Makefile |
29 | 31 | ||
30 | # clean installer executables included in source tarball | 32 | # clean installer executables included in source tarball |
31 | oe_runmake clean | 33 | oe_runmake clean firmware="efi32" EFIINC="${includedir}" |
34 | # NOTE: There is a temporary work around above to specify | ||
35 | # the efi32 as the firmware else the pre-built bios | ||
36 | # files get erased contrary to the doc/distib.txt | ||
37 | # In the future this should be "bios" and not "efi32". | ||
32 | } | 38 | } |
33 | 39 | ||
34 | do_compile() { | 40 | do_compile() { |
35 | # Rebuild only the installer; keep precompiled bootloaders | 41 | # Rebuild only the installer; keep precompiled bootloaders |
36 | # as per author's request (doc/distrib.txt) | 42 | # as per author's request (doc/distrib.txt) |
37 | oe_runmake CC="${CC} ${CFLAGS}" LDFLAGS="${LDFLAGS}" installer | 43 | oe_runmake CC="${CC} ${CFLAGS}" LDFLAGS="${LDFLAGS}" firmware="bios" installer |
38 | } | 44 | } |
39 | 45 | ||
40 | do_install() { | 46 | do_install() { |
41 | oe_runmake install INSTALLROOT="${D}" | 47 | oe_runmake install INSTALLROOT="${D}" firmware="bios" |
42 | 48 | ||
43 | install -d ${D}${datadir}/syslinux/ | 49 | install -d ${D}${datadir}/syslinux/ |
44 | install -m 644 ${S}/core/ldlinux.sys ${D}${datadir}/syslinux/ | 50 | install -m 644 ${S}/bios/core/ldlinux.sys ${D}${datadir}/syslinux/ |
45 | install -m 644 ${S}/core/ldlinux.bss ${D}${datadir}/syslinux/ | 51 | install -m 644 ${S}/bios/core/ldlinux.bss ${D}${datadir}/syslinux/ |
46 | } | 52 | } |
47 | 53 | ||
48 | PACKAGES += "${PN}-extlinux ${PN}-mbr ${PN}-chain ${PN}-pxelinux ${PN}-isolinux ${PN}-misc" | 54 | PACKAGES += "${PN}-extlinux ${PN}-mbr ${PN}-chain ${PN}-pxelinux ${PN}-isolinux ${PN}-misc" |