
This reverts commit 43838a23a05fbd13e47d750d3dfd77001536dd33. The reason for reverting this commit is that entropy gets acquired very hard on Orange Pi Plus2. The hardware crypto module is not supported yet for H3 SoC in this kernel version. It is expected to be included in 4.18 kernel. As NetworkManager is depending on randomness to succesfully set its connections, if we don't revert this commit, the board can get blocked for minutes until it succesfully connects to a network. This patch should be reverted immediately when upgrading to a kernel where hw crypto is supported. Signed-off-by: Sebastian Panceac <sebastian@resin.io>
27 lines
887 B
BlitzBasic
27 lines
887 B
BlitzBasic
SECTION = "kernel"
|
|
DESCRIPTION = "Mainline Linux kernel"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=bbea815ee2795b2f4230826c0c6b8814"
|
|
COMPATIBLE_MACHINE = "(sun4i|sun5i|sun7i|sun8i|sun50i)"
|
|
|
|
inherit kernel
|
|
|
|
# Since we're not using git, this doesn't make a difference, but we need to fill
|
|
# in something or kernel-yocto.bbclass will fail.
|
|
KBRANCH ?= "master"
|
|
|
|
# Pull in the devicetree files into the rootfs
|
|
RDEPENDS_${KERNEL_PACKAGE_NAME}-base += "kernel-devicetree"
|
|
|
|
KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}"
|
|
|
|
S = "${WORKDIR}/linux-${PV}"
|
|
|
|
SRC_URI[md5sum] = "a5899b46a3d146c65bc2ba724db2f4ca"
|
|
|
|
SRC_URI = "https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-${PV}.tar.xz \
|
|
file://defconfig \
|
|
file://don-t-default-activate-regdb.patch \
|
|
file://0001-Enable-i2c0-on-OrangePi-Plus2-board.patch \
|
|
file://0001-Revert-random-fix-crng_ready-test.patch \
|
|
"
|