aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-bsp/ipaq-boot-params/ipaq-boot-params.bb
blob: c8ea1d7701eeb84143034bd28572f47dbbc88c5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
DESCRIPTION = "Kernel boot parameters for HH.org bootldr"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"

COMPATIBLE_MACHINE = "h3600"

SRC_URI = "file://params"

S = "${WORKDIR}"

do_install() {
        install -d ${D}/boot
        install -m 0644 ${WORKDIR}/params ${D}/boot/
}

FILES_${PN} = "/boot/params"
PACKAGE_ARCH = "${MACHINE_ARCH}"