mirror of
https://github.com/Telecominfraproject/OpenNetworkLinux.git
synced 2025-12-25 09:17:08 +00:00
Per-platform kernel modules can now be built out of tree against multiple kernel mbuild packages.
15 lines
246 B
Makefile
15 lines
246 B
Makefile
ifndef KERNELS
|
|
$(error $$KERNELS must be set)
|
|
endif
|
|
|
|
ifndef KMODULES
|
|
$(error $$KMODULES must be set)
|
|
endif
|
|
|
|
ifndef PLATFORM
|
|
$(error $$PLATFORM must be set)
|
|
endif
|
|
|
|
modules:
|
|
$(ONL)/tools/scripts/kmodbuild.sh "$(KERNELS)" "$(KMODULES)" $(PLATFORM)
|