summaryrefslogtreecommitdiff
path: root/meta-raspberrypi/recipes-kernel
diff options
context:
space:
mode:
authorAndrew Geissler <geissonator@yahoo.com>2021-01-09 01:09:43 +0300
committerAndrew Geissler <geissonator@yahoo.com>2021-01-09 01:09:44 +0300
commit15ad1111c1552b41e177e6f8129949b9d4bbb5f9 (patch)
tree5752f97e28fb5176fe34594b144a1ef960f958e5 /meta-raspberrypi/recipes-kernel
parente19ead8cb992ad2ae72c1b5a1b25a888467a0a13 (diff)
downloadopenbmc-15ad1111c1552b41e177e6f8129949b9d4bbb5f9.tar.xz
meta-raspberrypi: subtree update:4b89f63699..a7cc636d4e
Andrei Gherzan (1): README.md: Mention build server sponsor Khem Raj (2): raspidmx: Disable for all non-rpi hosts initramfs-image-bundle: Add MTD_UBI Ovidiu Panait (1): linux-raspberry: Drop 64-bit specific do_compile_append() Trevor Woerner (1): raspidmx: add Signed-off-by: Andrew Geissler <geissonator@yahoo.com> Change-Id: I8916b103753d4d63e1c0e4511e631af0a80a29d1
Diffstat (limited to 'meta-raspberrypi/recipes-kernel')
-rw-r--r--meta-raspberrypi/recipes-kernel/linux/files/initramfs-image-bundle.cfg2
-rw-r--r--meta-raspberrypi/recipes-kernel/linux/linux-raspberrypi.inc7
2 files changed, 2 insertions, 7 deletions
diff --git a/meta-raspberrypi/recipes-kernel/linux/files/initramfs-image-bundle.cfg b/meta-raspberrypi/recipes-kernel/linux/files/initramfs-image-bundle.cfg
index ea540031c..8d3ad168f 100644
--- a/meta-raspberrypi/recipes-kernel/linux/files/initramfs-image-bundle.cfg
+++ b/meta-raspberrypi/recipes-kernel/linux/files/initramfs-image-bundle.cfg
@@ -1,3 +1,5 @@
CONFIG_OVERLAY_FS=y
CONFIG_SQUASHFS=y
+CONFIG_MTD=y
+CONFIG_MTD_UBI=y
CONFIG_UBIFS_FS=y
diff --git a/meta-raspberrypi/recipes-kernel/linux/linux-raspberrypi.inc b/meta-raspberrypi/recipes-kernel/linux/linux-raspberrypi.inc
index 746c0c56c..db1dbdb85 100644
--- a/meta-raspberrypi/recipes-kernel/linux/linux-raspberrypi.inc
+++ b/meta-raspberrypi/recipes-kernel/linux/linux-raspberrypi.inc
@@ -34,10 +34,3 @@ KERNEL_MODULE_AUTOLOAD += "${@bb.utils.contains("MACHINE_FEATURES", "pitft28r",
# set by default in rpi-4.8.y and later branches so we need to provide it
# manually. This value unused if KERNEL_IMAGETYPE is not uImage.
KERNEL_EXTRA_ARGS += "LOADADDR=0x00008000"
-
-do_compile_append() {
- if [ "${SITEINFO_BITS}" = "64" ]; then
- cc_extra=$(get_cc_option)
- oe_runmake dtbs CC="${KERNEL_CC} $cc_extra " LD="${KERNEL_LD}" ${KERNEL_EXTRA_ARGS}
- fi
-}