diff options
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" |
