-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MIPS: TXx9: Early command-line preprocessing
* Select board by command-line option or firmware environment variable. * Handle "masterclk=" option. * Add boards.h to centerize board_vec declaration. Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp> Signed-off-by: Ralf Baechle <ralf@linux-mips.org> create mode 100644 include/asm-mips/txx9/boards.h
- Loading branch information
Atsushi Nemoto
authored and
Ralf Baechle
committed
Oct 11, 2008
1 parent
265b89d
commit 860e546
Showing
2 changed files
with
78 additions
and
6 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
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,10 @@ | ||
#ifdef CONFIG_TOSHIBA_JMR3927 | ||
BOARD_VEC(jmr3927_vec) | ||
#endif | ||
#ifdef CONFIG_TOSHIBA_RBTX4927 | ||
BOARD_VEC(rbtx4927_vec) | ||
BOARD_VEC(rbtx4937_vec) | ||
#endif | ||
#ifdef CONFIG_TOSHIBA_RBTX4938 | ||
BOARD_VEC(rbtx4938_vec) | ||
#endif |