summaryrefslogtreecommitdiff
path: root/meta-openbmc-bsp/meta-aspeed/common/recipes-kernel/linux/linux-aspeed.inc
diff options
context:
space:
mode:
authorBrad Bishop <bradleyb@fuzziesquirrel.com>2018-03-24 08:57:26 +0300
committerBrad Bishop <bradleyb@fuzziesquirrel.com>2018-06-15 16:03:37 +0300
commite04e55fb3e6eb933de57efe725f0e11aa8e18a95 (patch)
treec5a0806cdfeb9a2bf3ed55cfb72d654840352f4f /meta-openbmc-bsp/meta-aspeed/common/recipes-kernel/linux/linux-aspeed.inc
parentfa03241afaf3392b9ede4c85a74a083ba5f9e2b6 (diff)
downloadopenbmc-e04e55fb3e6eb933de57efe725f0e11aa8e18a95.tar.xz
aspeed: remove common directory
Move recipes from the common dir to the layer base dir to match typical layer layouts. Change-Id: Idcd48dd346ab51b0a16fffe31319f13fad76111e Tested: Built and verified witherspoon and palmetto images Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
Diffstat (limited to 'meta-openbmc-bsp/meta-aspeed/common/recipes-kernel/linux/linux-aspeed.inc')
-rw-r--r--meta-openbmc-bsp/meta-aspeed/common/recipes-kernel/linux/linux-aspeed.inc29
1 files changed, 0 insertions, 29 deletions
diff --git a/meta-openbmc-bsp/meta-aspeed/common/recipes-kernel/linux/linux-aspeed.inc b/meta-openbmc-bsp/meta-aspeed/common/recipes-kernel/linux/linux-aspeed.inc
deleted file mode 100644
index 55678405f..000000000
--- a/meta-openbmc-bsp/meta-aspeed/common/recipes-kernel/linux/linux-aspeed.inc
+++ /dev/null
@@ -1,29 +0,0 @@
-DESCRIPTION = "Linux kernel for Aspeed"
-SECTION = "kernel"
-LICENSE = "GPLv2"
-
-PROVIDES += "virtual/kernel"
-
-KCONFIG_MODE="--alldefconfig"
-
-KSRC ?= "git://github.com/openbmc/linux;protocol=git;branch=${KBRANCH}"
-SRC_URI = "${KSRC}"
-SRC_URI_append_ast2400 = " file://ast2400/defconfig"
-SRC_URI_append_ast2500 = " file://ast2500/defconfig"
-
-LINUX_VERSION_EXTENSION ?= "-${SRCREV}"
-
-PV = "${LINUX_VERSION}+git${SRCPV}"
-
-do_patch_append() {
- for DTB in "${KERNEL_DEVICETREE}"; do
- DT=`basename ${DTB} .dtb`
- if [ -r "${WORKDIR}/${DT}.dts" ]; then
- cp ${WORKDIR}/${DT}.dts \
- ${STAGING_KERNEL_DIR}/arch/${ARCH}/boot/dts
- fi
- done
-}
-
-inherit kernel
-require recipes-kernel/linux/linux-yocto.inc