-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
buildsystem: split default modules include early and late
DEFAULT_MODULEs declared in defaultmodules_regular.inc.mk MAY only be disabled at APPLICATION level or in BOARD/CPU Makefile.default. These modules MAY have complex dependencies themselfs. DEFAULT_MODULEs declared in defaultmodules_no_recursive_deps.inc.mk MAY be disabled during dependency resolution. The MUST only have dependencies against modules with no dependencies themselfs, and these dependencies must be defined in makefiles/defaultmodules._deps.inc.mk
- Loading branch information
Showing
6 changed files
with
27 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# This file declare DEFAULT_MODULEs that MAY only have as dependecies modules | ||
# with no dependencies themselfs. If they modules declared here have dependencies | ||
# they must be delcared in defaultmodules_deps.inc.mk. | ||
# These DEFAULT_MODULEs MAY be disabled during dependency resolution | ||
|
||
DEFAULT_MODULE += auto_init periph_init | ||
|
||
DEFAULT_MODULE += periph_init_leds | ||
DEFAULT_MODULE += periph_init_led0 | ||
DEFAULT_MODULE += periph_init_led1 | ||
DEFAULT_MODULE += periph_init_led2 | ||
DEFAULT_MODULE += periph_init_led3 | ||
DEFAULT_MODULE += periph_init_led4 | ||
DEFAULT_MODULE += periph_init_led5 | ||
DEFAULT_MODULE += periph_init_led6 | ||
DEFAULT_MODULE += periph_init_led7 |
5 changes: 5 additions & 0 deletions
5
makefiles/defaultmodules.inc.mk → makefiles/defaultmodules_regular.inc.mk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters