mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 16:27:27 +00:00
a45830a39b
* This change is only aesthetic (unlike indentation in Python tasks). * Some recipes were using tabs. * Some were using 8 spaces. * Some were using mix or different number of spaces. * Make them consistently use 4 spaces everywhere. * Yocto styleguide advises to use tabs (but the only reason to keep tabs is the need to update a lot of recipes). Lately this advice was also merged into the styleguide on the OE wiki. * Using 4 spaces in both types of tasks is better because it's less error prone when someone is not sure if e.g. do_generate_toolchain_file() is Python or shell task and also allows to highlight every tab used in .bb, .inc, .bbappend, .bbclass as potentially bad (shouldn't be used for indenting of multiline variable assignments and cannot be used for Python tasks). * Don't indent closing quote on multiline variables we're quite inconsistent wheater it's first character on line under opening quote or under first non-whitespace character in previous line. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Acked-by: Koen Kooi <koen@dominion.thruhere.net>
61 lines
1.5 KiB
BlitzBasic
61 lines
1.5 KiB
BlitzBasic
DESCRIPTION = "Configuration file for kexecboot"
|
|
SECTION = "base"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
|
|
|
|
PR = "r14"
|
|
|
|
INHIBIT_DEFAULT_DEPS = "1"
|
|
|
|
SRC_URI = "file://icon.xpm"
|
|
|
|
CMDLINE ?= ""
|
|
CMDLINE_DEBUG ?= "quiet"
|
|
|
|
# Note: for qvga the label is currently limited to about 24 chars
|
|
KEXECBOOT_LABEL ?= "${@d.getVar('DISTRO', True) or d.getVar('DISTRO_VERSION', True)}-${MACHINE}"
|
|
|
|
do_configure_prepend () {
|
|
install -m 0644 ${WORKDIR}/icon.xpm ${S}
|
|
}
|
|
|
|
do_install_prepend () {
|
|
echo '# First kernel stanza.
|
|
# Show this label in kexecboot menu.
|
|
LABEL=${KEXECBOOT_LABEL}
|
|
# Specify full kernel path on target.
|
|
KERNEL=/boot/${KERNEL_IMAGETYPE}
|
|
#
|
|
# Append this tags to the kernel cmdline.
|
|
APPEND=${CMDLINE} ${CMDLINE_DEBUG}
|
|
#
|
|
# Specify optional initrd/initramfs.
|
|
# INITRD=/boot/initramfs.cpio.gz
|
|
#
|
|
# Specify full path for a custom icon for the menu-item.
|
|
# If not set, use device-icons as default (NAND, SD, CF, ...).
|
|
# ICON=/boot/icon.xpm
|
|
#
|
|
# Priority of item in kexecboot menu.
|
|
# Items with highest priority will be shown at top of menu.
|
|
# Default: 0 (lowest, ordered by device ordering)
|
|
# PRIORITY=10
|
|
#
|
|
#
|
|
# Second kernel stanza.
|
|
# LABEL=${KEXECBOOT_LABEL}-test
|
|
# KERNEL=/boot/${KERNEL_IMAGETYPE}-test
|
|
# APPEND=${CMDLINE}
|
|
#' >> ${S}/boot.cfg
|
|
}
|
|
|
|
do_install () {
|
|
install -d ${D}/boot
|
|
install -m 0644 boot.cfg ${D}/boot/boot.cfg
|
|
install -m 0644 icon.xpm ${D}/boot/icon.xpm
|
|
}
|
|
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
|
|
FILES_${PN} += "/boot/*"
|