Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
reform-boundary-uboot
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Reform
reform-boundary-uboot
Commits
ced0715d
Commit
ced0715d
authored
11 years ago
by
Masahiro Yamada
Committed by
Tom Rini
11 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Makefile: move more stuff to top Makefile
Signed-off-by:
Masahiro Yamada
<
yamada.m@jp.panasonic.com
>
parent
fea1ca8e
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Makefile
+17
-3
17 additions, 3 deletions
Makefile
config.mk
+1
-18
1 addition, 18 deletions
config.mk
with
18 additions
and
21 deletions
Makefile
+
17
−
3
View file @
ced0715d
...
@@ -281,13 +281,27 @@ endif
...
@@ -281,13 +281,27 @@ endif
# load other configuration
# load other configuration
include
$(TOPDIR)/config.mk
include
$(TOPDIR)/config.mk
ifneq
($(CONFIG_SYS_TEXT_BASE),)
KBUILD_CPPFLAGS
+=
-DCONFIG_SYS_TEXT_BASE
=
$(
CONFIG_SYS_TEXT_BASE
)
endif
export
CONFIG_SYS_TEXT_BASE
LDFLAGS_u-boot
+=
-T
$(
obj
)
u-boot.lds
$(
LDFLAGS_FINAL
)
ifneq
($(CONFIG_SYS_TEXT_BASE),)
LDFLAGS_u-boot
+=
-Ttext
$(
CONFIG_SYS_TEXT_BASE
)
endif
# Targets which don't build the source code
# Targets which don't build the source code
NON_BUILD_TARGETS
=
backup clean clobber distclean mrproper tidy unconfig
NON_BUILD_TARGETS
=
backup clean clobber distclean mrproper tidy unconfig
%_config
# Only do the generic board check when actually building, not configuring
# Only do the generic board check when actually building, not configuring
ifeq
($(filter $(NON_BUILD_TARGETS),$(MAKECMDGOALS)),)
ifeq
($(filter $(NON_BUILD_TARGETS),$(MAKECMDGOALS)),)
ifeq
($(findstring _config,$(MAKECMDGOALS)),)
ifeq
($(__HAVE_ARCH_GENERIC_BOARD),)
$(CHECK_GENERIC_BOARD)
ifneq
($(CONFIG_SYS_GENERIC_BOARD),)
CHECK_GENERIC_BOARD
=
$(
error Your architecture does not support generic board.
\
Please undefined CONFIG_SYS_GENERIC_BOARD
in
your board config file
)
endif
endif
endif
endif
endif
...
...
This diff is collapsed.
Click to expand it.
config.mk
+
1
−
18
View file @
ced0715d
...
@@ -102,10 +102,6 @@ CPPFLAGS += -ffunction-sections -fdata-sections
...
@@ -102,10 +102,6 @@ CPPFLAGS += -ffunction-sections -fdata-sections
LDFLAGS_FINAL
+=
--gc-sections
LDFLAGS_FINAL
+=
--gc-sections
endif
endif
ifneq
($(CONFIG_SYS_TEXT_BASE),)
CPPFLAGS
+=
-DCONFIG_SYS_TEXT_BASE
=
$(
CONFIG_SYS_TEXT_BASE
)
endif
ifeq
($(CONFIG_SPL_BUILD),y)
ifeq
($(CONFIG_SPL_BUILD),y)
CPPFLAGS
+=
-DCONFIG_SPL_BUILD
CPPFLAGS
+=
-DCONFIG_SPL_BUILD
ifeq
($(CONFIG_TPL_BUILD),y)
ifeq
($(CONFIG_TPL_BUILD),y)
...
@@ -113,14 +109,6 @@ CPPFLAGS += -DCONFIG_TPL_BUILD
...
@@ -113,14 +109,6 @@ CPPFLAGS += -DCONFIG_TPL_BUILD
endif
endif
endif
endif
# Does this architecture support generic board init?
ifeq
($(__HAVE_ARCH_GENERIC_BOARD),)
ifneq
($(CONFIG_SYS_GENERIC_BOARD),)
CHECK_GENERIC_BOARD
=
$(
error Your architecture does not support generic board.
\
Please undefined CONFIG_SYS_GENERIC_BOARD
in
your board config file
)
endif
endif
CPPFLAGS
+=
$(
UBOOTINCLUDE
)
CPPFLAGS
+=
$(
UBOOTINCLUDE
)
CPPFLAGS
+=
$(
NOSTDINC_FLAGS
)
-pipe
$(
PLATFORM_CPPFLAGS
)
CPPFLAGS
+=
$(
NOSTDINC_FLAGS
)
-pipe
$(
PLATFORM_CPPFLAGS
)
...
@@ -141,11 +129,6 @@ AFLAGS := $(KBUILD_AFLAGS) $(CPPFLAGS)
...
@@ -141,11 +129,6 @@ AFLAGS := $(KBUILD_AFLAGS) $(CPPFLAGS)
LDFLAGS
+=
$(
PLATFORM_LDFLAGS
)
LDFLAGS
+=
$(
PLATFORM_LDFLAGS
)
LDFLAGS_FINAL
+=
-Bstatic
LDFLAGS_FINAL
+=
-Bstatic
LDFLAGS_u-boot
+=
-T
$(
obj
)
u-boot.lds
$(
LDFLAGS_FINAL
)
ifneq
($(CONFIG_SYS_TEXT_BASE),)
LDFLAGS_u-boot
+=
-Ttext
$(
CONFIG_SYS_TEXT_BASE
)
endif
LDFLAGS_$(SPL_BIN)
+=
-T
$(
obj
)
u-boot-spl.lds
$(
LDFLAGS_FINAL
)
LDFLAGS_$(SPL_BIN)
+=
-T
$(
obj
)
u-boot-spl.lds
$(
LDFLAGS_FINAL
)
ifneq
($(CONFIG_SPL_TEXT_BASE),)
ifneq
($(CONFIG_SPL_TEXT_BASE),)
LDFLAGS_$(SPL_BIN)
+=
-Ttext
$(
CONFIG_SPL_TEXT_BASE
)
LDFLAGS_$(SPL_BIN)
+=
-Ttext
$(
CONFIG_SPL_TEXT_BASE
)
...
@@ -153,4 +136,4 @@ endif
...
@@ -153,4 +136,4 @@ endif
#########################################################################
#########################################################################
export
CONFIG_SYS_TEXT_BASE
PLATFORM_CPPFLAGS
PLATFORM_RELFLAGS
CPPFLAGS
CFLAGS
AFLAGS
export
PLATFORM_CPPFLAGS
PLATFORM_RELFLAGS
CPPFLAGS
CFLAGS
AFLAGS
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment