mirror of
git://git.yoctoproject.org/meta-rockchip.git
synced 2025-07-19 12:49:03 +02:00
24 lines
610 B
PHP
24 lines
610 B
PHP
# Copyright (C) 2014 NEO-Technologies
|
|
# Released under the MIT license (see COPYING.MIT for the terms)
|
|
|
|
DESCRIPTION = "Linux kernel for Rockchip's ARM platforms"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7"
|
|
|
|
inherit kernel
|
|
|
|
SRCBRANCH ?= "rockchip-3.0"
|
|
DEFCONFIG ?= "rk3188_steak_defconfig"
|
|
|
|
SRC_URI = "git://github.com/linux-rockchip/rockchip-3.0.git;branch=${SRCBRANCH}"
|
|
SRCREV_pn-${PN} = "${AUTOREV}"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
do_configure_prepend() {
|
|
oe_runmake -C "${S}" ${DEFCONFIG}
|
|
|
|
# Fix arch QA issues ("Architecture did not match")
|
|
rm -f ${S}/mkkrnlimg
|
|
}
|