kumquat-buildroot/package/dtbocfg/dtbocfg.mk
Fabrice Fontaine ba1176b23b package/dtbocfg: bump to version 0.1.0
This bump will fix the following build failure with kernel >= 6.6 thanks
to
36e9dad7bd:

/home/thomas/autobuild/instance-3/output-1/build/dtbocfg-0.0.9/./dtbocfg.c: In function ‘dtbocfg_overlay_item_create’:
/home/thomas/autobuild/instance-3/output-1/build/dtbocfg-0.0.9/./dtbocfg.c:68:19: error: too few arguments to function ‘of_overlay_fdt_apply’
   68 |         ret_val = of_overlay_fdt_apply(overlay->dtbo,overlay->dtbo_size, &ovcs_id);
      |                   ^~~~~~~~~~~~~~~~~~~~

https://github.com/ikwzm/dtbocfg/compare/v0.0.9...v0.1.0

Fixes:
 - http://autobuild.buildroot.org/results/e5bae7fa5558801c39f53a4a15ac550c3855322e

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Acked-by: Herve Codina <herve.codina@bootlin.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2023-11-03 10:25:47 +01:00

19 lines
516 B
Makefile

################################################################################
#
# dtbocfg
#
################################################################################
DTBOCFG_VERSION = 0.1.0
DTBOCFG_SITE = $(call github,ikwzm,dtbocfg,v$(DTBOCFG_VERSION))
DTBOCFG_LICENSE = BSD-2-Clause
DTBOCFG_LICENSE_FILES = LICENSE
define DTBOCFG_LINUX_CONFIG_FIXUPS
$(call KCONFIG_ENABLE_OPT,CONFIG_OF_OVERLAY)
$(call KCONFIG_ENABLE_OPT,CONFIG_CONFIGFS_FS)
endef
$(eval $(kernel-module))
$(eval $(generic-package))