blob: 8db2055dc976afeeba921f8408546b666f1a5a66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
DESCRIPTION = "A multi-purpose linux bootloader"
HOMEPAGE = "http://syslinux.zytor.com/"
LICENSE = "GPL"
SRC_URI = "${KERNELORG_MIRROR}/pub/linux/utils/boot/syslinux/syslinux-${PV}.tar.bz2"
PR = "r1"
# If you really want to run syslinux, you need mtools. We just want the
# ldlinux.* stuff for now, so skip mtools-native
DEPENDS = "nasm-native"
S = "${WORKDIR}/syslinux-${PV}"
do_configure() {
sed -i ${S}/Makefile ${S}/*/Makefile -e 's/\(CC[\t ]*\)=/\1?=/'
}
STAGE_TEMP = "${WORKDIR}/stage_temp"
COMPATIBLE_HOST = '(x86_64|i.86.*)-(linux|freebsd.*)'
do_install() {
install -d ${STAGE_TEMP}
oe_runmake install INSTALLROOT="${STAGE_TEMP}"
# When building media, the syslinux binary isn't nearly as useful
# as the DOS data files, so we copy those into a special location
# for usage during a image build stage
install -d ${D}${datadir}/syslinux/
install -m 0644 ${STAGE_TEMP}/usr/lib/syslinux/isolinux.bin ${D}${datadir}/syslinux/isolinux.bin
install -m 644 ${S}/ldlinux.sys ${D}${datadir}/syslinux/ldlinux.sys
install -m 644 ${S}/ldlinux.bss ${D}${datadir}/syslinux/ldlinux.bss
}
|