mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
--------- Co-authored-by: tiopex <tiopxyz@gmail.com> Co-authored-by: tiopex <67048640+tiopex@users.noreply.github.com>
13 lines
432 B
Makefile
13 lines
432 B
Makefile
################################################################################
|
|
# Linux ev3dev extensions
|
|
#
|
|
# Patch the linux kernel with ev3dev extension
|
|
################################################################################
|
|
|
|
LINUX_EXTENSIONS += ev3dev-linux-drivers
|
|
|
|
define EV3DEV_LINUX_DRIVERS_PREPARE_KERNEL
|
|
mkdir -p $(LINUX_DIR)/drivers/lego
|
|
cp -dpfr $(EV3DEV_LINUX_DRIVERS_DIR)/* $(LINUX_DIR)/drivers/lego/
|
|
endef
|