diff options
Diffstat (limited to 'meta/classes/syslinux.bbclass')
| -rw-r--r-- | meta/classes/syslinux.bbclass | 330 |
1 files changed, 187 insertions, 143 deletions
diff --git a/meta/classes/syslinux.bbclass b/meta/classes/syslinux.bbclass index fb7597470b..d6f882420e 100644 --- a/meta/classes/syslinux.bbclass +++ b/meta/classes/syslinux.bbclass @@ -2,153 +2,197 @@ # Copyright (C) 2004-2006, Advanced Micro Devices, Inc. All Rights Reserved # Released under the MIT license (see packages/COPYING) -# This creates a configuration file suitable for use with syslinux. - -python build_syslinux_menu () { - import copy - import sys - - workdir = bb.data.getVar('WORKDIR', d, 1) - if not workdir: - bb.error("WORKDIR is not defined") - return - - labels = bb.data.getVar('LABELS', d, 1) - if not labels: - bb.debug(1, "LABELS not defined, nothing to do") - return - - if labels == []: - bb.debug(1, "No labels, nothing to do") - return - - cfile = bb.data.getVar('SYSLINUXMENU', d, 1) - if not cfile: - raise bb.build.FuncFailed('Unable to read SYSLINUXMENU') - - bb.mkdirhier(os.path.dirname(cfile)) - - try: - cfgfile = file(cfile, 'w') - except OSError: - raise bb.build.funcFailed('Unable to open %s' % (cfile)) - - # Beep the speaker and Clear the screen - cfgfile.write('\x07\x0C') - - # The title should be configurable - cfgfile.write('Linux Boot Menu\n') - cfgfile.write('The following targets are available on this image:\n') - cfgfile.write('\n') - - for label in labels.split(): - from copy import deepcopy - localdata = deepcopy(d) - - overrides = bb.data.getVar('OVERRIDES', localdata) - if not overrides: - raise bb.build.FuncFailed('OVERRIDES not defined') - overrides = bb.data.expand(overrides, localdata) - - bb.data.setVar('OVERRIDES', label + ':' + overrides, localdata) - bb.data.update_data(localdata) - - usage = bb.data.getVar('USAGE', localdata, 1) - cfgfile.write(' \x0F\x30\x3E%16s\x0F\x30\x37: ' % (label)) - cfgfile.write('%s\n' % (usage)) - - del localdata - - cfgfile.write('\n') - cfgfile.close() +# Provide syslinux specific functions for building bootable images. + +# External variables +# ${INITRD} - indicates a list of filesystem images to concatenate and use as an initrd (optional) +# ${ROOTFS} - indicates a filesystem image to include as the root filesystem (optional) +# ${AUTO_SYSLINUXMENU} - set this to 1 to enable creating an automatic menu +# ${LABELS} - a list of targets for the automatic config +# ${APPEND} - an override list of append strings for each label +# ${SYSLINUX_OPTS} - additional options to add to the syslinux file ';' delimited +# ${SYSLINUX_SPLASH} - A background for the vga boot menu if using the boot menu +# ${SYSLINUX_DEFAULT_CONSOLE} - set to "console=ttyX" to change kernel boot default console +# ${SYSLINUX_SERIAL} - Set an alternate serial port or turn off serial with empty string +# ${SYSLINUX_SERIAL_TTY} - Set alternate console=tty... kernel boot argument +# ${SYSLINUX_KERNEL_ARGS} - Add additional kernel arguments + +do_bootimg[depends] += "${MLPREFIX}syslinux:do_populate_sysroot \ + syslinux-native:do_populate_sysroot" + +ISOLINUXDIR ?= "/isolinux" +SYSLINUXDIR = "/" +# The kernel has an internal default console, which you can override with +# a console=...some_tty... +SYSLINUX_DEFAULT_CONSOLE ?= "" +SYSLINUX_SERIAL ?= "0 115200" +SYSLINUX_SERIAL_TTY ?= "console=ttyS0,115200" +SYSLINUX_PROMPT ?= "0" +SYSLINUX_TIMEOUT ?= "50" +AUTO_SYSLINUXMENU ?= "1" +SYSLINUX_ALLOWOPTIONS ?= "1" +SYSLINUX_ROOT ?= "${ROOT}" +SYSLINUX_CFG_VM ?= "${S}/syslinux_vm.cfg" +SYSLINUX_CFG_LIVE ?= "${S}/syslinux_live.cfg" +APPEND ?= "" + +# Need UUID utility code. +inherit fs-uuid + +syslinux_populate() { + DEST=$1 + BOOTDIR=$2 + CFGNAME=$3 + + install -d ${DEST}${BOOTDIR} + + # Install the config files + install -m 0644 ${SYSLINUX_CFG} ${DEST}${BOOTDIR}/${CFGNAME} + if [ "${AUTO_SYSLINUXMENU}" = 1 ] ; then + install -m 0644 ${STAGING_DATADIR}/syslinux/vesamenu.c32 ${DEST}${BOOTDIR}/vesamenu.c32 + install -m 0444 ${STAGING_DATADIR}/syslinux/libcom32.c32 ${DEST}${BOOTDIR}/libcom32.c32 + install -m 0444 ${STAGING_DATADIR}/syslinux/libutil.c32 ${DEST}${BOOTDIR}/libutil.c32 + if [ "${SYSLINUX_SPLASH}" != "" ] ; then + install -m 0644 ${SYSLINUX_SPLASH} ${DEST}${BOOTDIR}/splash.lss + fi + fi } -python build_syslinux_cfg () { - import copy - import sys - - workdir = bb.data.getVar('WORKDIR', d, 1) - if not workdir: - bb.error("WORKDIR not defined, unable to package") - return - - labels = bb.data.getVar('LABELS', d, 1) - if not labels: - bb.debug(1, "LABELS not defined, nothing to do") - return - - if labels == []: - bb.debug(1, "No labels, nothing to do") - return - - cfile = bb.data.getVar('SYSLINUXCFG', d, 1) - if not cfile: - raise bb.build.FuncFailed('Unable to read SYSLINUXCFG') - - bb.mkdirhier(os.path.dirname(cfile)) - - try: - cfgfile = file(cfile, 'w') - except OSError: - raise bb.build.funcFailed('Unable to open %s' % (cfile)) - - # FIXME - the timeout should be settable - # And maybe the default too - # Definately the prompt - - cfgfile.write('# Automatically created by OE\n') - - opts = bb.data.getVar('SYSLINUX_OPTS', d, 1) - - if opts: - for opt in opts.split(';'): - cfgfile.write('%s\n' % opt) - - cfgfile.write('ALLOWOPTIONS 1\n'); - cfgfile.write('DEFAULT %s\n' % (labels.split()[0])) - - timeout = bb.data.getVar('SYSLINUX_TIMEOUT', d, 1) - - if timeout: - cfgfile.write('TIMEOUT %s\n' % timeout) - else: - cfgfile.write('TIMEOUT 50\n') - - cfgfile.write('PROMPT 1\n') - - menu = bb.data.getVar('AUTO_SYSLINUXMENU', d, 1) - - # This is ugly. My bad. - - if menu: - bb.build.exec_func('build_syslinux_menu', d) - mfile = bb.data.getVar('SYSLINUXMENU', d, 1) - cfgfile.write('DISPLAY %s\n' % (mfile.split('/')[-1]) ) - - for label in labels.split(): - localdata = bb.data.createCopy(d) - - overrides = bb.data.getVar('OVERRIDES', localdata, True) - if not overrides: - raise bb.build.FuncFailed('OVERRIDES not defined') - - bb.data.setVar('OVERRIDES', label + ':' + overrides, localdata) - bb.data.update_data(localdata) - - cfgfile.write('LABEL %s\nKERNEL vmlinuz\n' % (label)) - - append = bb.data.getVar('APPEND', localdata, 1) - initrd = bb.data.getVar('INITRD', localdata, 1) - - if append: - cfgfile.write('APPEND ') +syslinux_iso_populate() { + iso_dir=$1 + syslinux_populate $iso_dir ${ISOLINUXDIR} isolinux.cfg + install -m 0644 ${STAGING_DATADIR}/syslinux/isolinux.bin $iso_dir${ISOLINUXDIR} + install -m 0644 ${STAGING_DATADIR}/syslinux/ldlinux.c32 $iso_dir${ISOLINUXDIR} +} - if initrd: - cfgfile.write('initrd=initrd ') +syslinux_hddimg_populate() { + hdd_dir=$1 + syslinux_populate $hdd_dir ${SYSLINUXDIR} syslinux.cfg + install -m 0444 ${STAGING_DATADIR}/syslinux/ldlinux.sys $hdd_dir${SYSLINUXDIR}/ldlinux.sys +} - cfgfile.write('LABEL=%s '% (label)) +syslinux_hddimg_install() { + syslinux ${IMGDEPLOYDIR}/${IMAGE_NAME}.hddimg +} - cfgfile.write('%s\n' % (append)) +syslinux_hdddirect_install() { + DEST=$1 + syslinux $DEST +} - cfgfile.close() +python build_syslinux_cfg () { + import copy + import sys + + workdir = d.getVar('WORKDIR') + if not workdir: + bb.error("WORKDIR not defined, unable to package") + return + + labels = d.getVar('LABELS') + if not labels: + bb.debug(1, "LABELS not defined, nothing to do") + return + + if labels == []: + bb.debug(1, "No labels, nothing to do") + return + + cfile = d.getVar('SYSLINUX_CFG') + if not cfile: + bb.fatal('Unable to read SYSLINUX_CFG') + + try: + cfgfile = open(cfile, 'w') + except OSError: + bb.fatal('Unable to open %s' % cfile) + + cfgfile.write('# Automatically created by OE\n') + + opts = d.getVar('SYSLINUX_OPTS') + + if opts: + for opt in opts.split(';'): + cfgfile.write('%s\n' % opt) + + allowoptions = d.getVar('SYSLINUX_ALLOWOPTIONS') + if allowoptions: + cfgfile.write('ALLOWOPTIONS %s\n' % allowoptions) + else: + cfgfile.write('ALLOWOPTIONS 1\n') + + syslinux_default_console = d.getVar('SYSLINUX_DEFAULT_CONSOLE') + syslinux_serial_tty = d.getVar('SYSLINUX_SERIAL_TTY') + syslinux_serial = d.getVar('SYSLINUX_SERIAL') + if syslinux_serial: + cfgfile.write('SERIAL %s\n' % syslinux_serial) + + menu = (d.getVar('AUTO_SYSLINUXMENU') == "1") + + if menu and syslinux_serial: + cfgfile.write('DEFAULT Graphics console %s\n' % (labels.split()[0])) + else: + cfgfile.write('DEFAULT %s\n' % (labels.split()[0])) + + timeout = d.getVar('SYSLINUX_TIMEOUT') + + if timeout: + cfgfile.write('TIMEOUT %s\n' % timeout) + else: + cfgfile.write('TIMEOUT 50\n') + + prompt = d.getVar('SYSLINUX_PROMPT') + if prompt: + cfgfile.write('PROMPT %s\n' % prompt) + else: + cfgfile.write('PROMPT 1\n') + + if menu: + cfgfile.write('ui vesamenu.c32\n') + cfgfile.write('menu title Select kernel options and boot kernel\n') + cfgfile.write('menu tabmsg Press [Tab] to edit, [Return] to select\n') + splash = d.getVar('SYSLINUX_SPLASH') + if splash: + cfgfile.write('menu background splash.lss\n') + + for label in labels.split(): + localdata = bb.data.createCopy(d) + + overrides = localdata.getVar('OVERRIDES') + if not overrides: + bb.fatal('OVERRIDES not defined') + + localdata.setVar('OVERRIDES', label + ':' + overrides) + + btypes = [ [ "", syslinux_default_console ] ] + if menu and syslinux_serial: + btypes = [ [ "Graphics console ", syslinux_default_console ], + [ "Serial console ", syslinux_serial_tty ] ] + + root= d.getVar('SYSLINUX_ROOT') + if not root: + bb.fatal('SYSLINUX_ROOT not defined') + + for btype in btypes: + cfgfile.write('LABEL %s%s\nKERNEL /vmlinuz\n' % (btype[0], label)) + + exargs = d.getVar('SYSLINUX_KERNEL_ARGS') + if exargs: + btype[1] += " " + exargs + + append = localdata.getVar('APPEND') + initrd = localdata.getVar('INITRD') + + append = root + " " + append + cfgfile.write('APPEND ') + + if initrd: + cfgfile.write('initrd=/initrd ') + + cfgfile.write('LABEL=%s '% (label)) + append = replace_rootfs_uuid(d, append) + cfgfile.write('%s %s\n' % (append, btype[1])) + + cfgfile.close() } +build_syslinux_cfg[dirs] = "${S}" |
