Skip to content

Commit

Permalink
savageboard 1st release
Browse files Browse the repository at this point in the history
  • Loading branch information
Allen Hsu authored and Allen Hsu committed Dec 27, 2013
1 parent 5899674 commit 967a647
Show file tree
Hide file tree
Showing 14 changed files with 24,344 additions and 397 deletions.
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3343,6 +3343,14 @@ mx6q_sabrelite_android_config \
mx6q_sabrelite_mfg_config : unconfig
@$(MKCONFIG) $(@:_config=) arm arm_cortexa8 mx6q_sabrelite freescale mx6

mx6dl_savage_config \
mx6dl_savage_mfg_config \
mx6dl_savage_android_config \
mx6q_savage_config \
mx6q_savage_android_config \
mx6q_savgae_mfg_config : unconfig
@$(MKCONFIG) $(@:_config=) arm arm_cortexa8 mx6q_savage freescale mx6

mx6dl_hdmidongle_config \
mx6dl_hdmidongle_nand_config \
mx6dl_hdmidongle_mfg_config \
Expand Down
47 changes: 47 additions & 0 deletions board/freescale/mx6q_savage/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
#
# (C) Copyright 2012 Freescale Semiconductor, Inc.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of
# the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
# MA 02111-1307 USA
#

include $(TOPDIR)/config.mk

LIB = $(obj)lib$(BOARD).a

COBJS := $(BOARD).o
SOBJS := lowlevel_init.o flash_header.o

SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
OBJS := $(addprefix $(obj),$(COBJS))
SOBJS := $(addprefix $(obj),$(SOBJS))

$(LIB): $(obj).depend $(OBJS) $(SOBJS)
$(AR) $(ARFLAGS) $@ $(OBJS) $(SOBJS)

clean:
rm -f $(SOBJS) $(OBJS)

distclean: clean
rm -f $(LIB) core *.bak .depend

#########################################################################

# defines $(obj).depend target
include $(SRCTREE)/rules.mk

sinclude $(obj).depend

#########################################################################
7 changes: 7 additions & 0 deletions board/freescale/mx6q_savage/config.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
LDSCRIPT := $(SRCTREE)/board/$(VENDOR)/$(BOARD)/u-boot.lds

sinclude $(OBJTREE)/board/$(VENDOR)/$(BOARD)/config.tmp

ifndef TEXT_BASE
TEXT_BASE = 0x27800000
endif
Loading

0 comments on commit 967a647

Please sign in to comment.