cosmos: rearrange configuration and makefile definitions
This is a no-op aesthetic change, arranging configurarion and makefile
lines alphanumerically.
BRANCH=none
BUG=none
TEST=cosmos still builds
Change-Id: I72b7defca722380dda3ef8453e625f28bdebfa2c
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Original-Commit-Id: c55a7e9d50
Original-Change-Id: I4498eef59fc20ea04b6ebadb451d0fe346824c05
Original-Signed-off-by: Vadim Bendebury <vbendeb@chromium.org>
Original-Reviewed-on: https://chromium-review.googlesource.com/223597
Original-Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: http://review.coreboot.org/9353
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
parent
3df01265d5
commit
771819a380
2 changed files with 12 additions and 12 deletions
|
|
@ -20,16 +20,16 @@
|
|||
config SOC_MARVELL_BG4CD
|
||||
bool
|
||||
default n
|
||||
select CPU_HAS_BOOTBLOCK_INIT
|
||||
select HAVE_MONOTONIC_TIMER
|
||||
select GENERIC_UDELAY
|
||||
select EARLY_CONSOLE
|
||||
select DYNAMIC_CBMEM
|
||||
select ARCH_BOOTBLOCK_ARMV7
|
||||
select ARCH_VERSTAGE_ARMV7
|
||||
select ARCH_ROMSTAGE_ARMV7
|
||||
select ARCH_RAMSTAGE_ARMV7
|
||||
select ARCH_ROMSTAGE_ARMV7
|
||||
select ARCH_VERSTAGE_ARMV7
|
||||
select BOOTBLOCK_CONSOLE
|
||||
select CPU_HAS_BOOTBLOCK_INIT
|
||||
select DYNAMIC_CBMEM
|
||||
select EARLY_CONSOLE
|
||||
select GENERIC_UDELAY
|
||||
select HAVE_MONOTONIC_TIMER
|
||||
|
||||
if SOC_MARVELL_BG4CD
|
||||
|
||||
|
|
|
|||
|
|
@ -18,24 +18,24 @@
|
|||
##
|
||||
|
||||
bootblock-y += cbmem.c
|
||||
bootblock-y += monotonic_timer.c
|
||||
bootblock-y += media.c
|
||||
bootblock-y += i2c.c
|
||||
bootblock-y += media.c
|
||||
bootblock-y += monotonic_timer.c
|
||||
|
||||
verstage-y += monotonic_timer.c
|
||||
verstage-y += i2c.c
|
||||
verstage-y += media.c
|
||||
verstage-y += monotonic_timer.c
|
||||
|
||||
romstage-y += cbmem.c
|
||||
romstage-y += monotonic_timer.c
|
||||
romstage-y += i2c.c
|
||||
romstage-y += media.c
|
||||
romstage-y += monotonic_timer.c
|
||||
romstage-y += sdram.c
|
||||
|
||||
ramstage-y += cbmem.c
|
||||
ramstage-y += monotonic_timer.c
|
||||
ramstage-y += i2c.c
|
||||
ramstage-y += media.c
|
||||
ramstage-y += monotonic_timer.c
|
||||
|
||||
$(objcbfs)/bootblock.raw.elf: $(objcbfs)/bootblock.elf
|
||||
cp $< $@
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue