diff options
author | P. J. McDermott <pj@pehjota.net> | 2015-10-28 15:45:59 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2015-10-28 15:45:59 (EDT) |
commit | 32c3674524c178fe87e9611aa02fe9f167627a2c (patch) | |
tree | ec78430735b1b60b03eb32744ffcd8a3bfd895a0 /src/board | |
parent | ef0923da59d7c2669ad3a6d2ce57c8ab0c3b3457 (diff) | |
download | firman.sh-32c3674524c178fe87e9611aa02fe9f167627a2c.zip firman.sh-32c3674524c178fe87e9611aa02fe9f167627a2c.tar.gz firman.sh-32c3674524c178fe87e9611aa02fe9f167627a2c.tar.bz2 |
board_prepare_rom(): New function
Diffstat (limited to 'src/board')
-rw-r--r-- | src/board/taurinus_x200_4mb.sh | 9 | ||||
-rw-r--r-- | src/board/taurinus_x200_8mb.sh | 9 | ||||
-rw-r--r-- | src/board/x200_4mb.sh | 9 | ||||
-rw-r--r-- | src/board/x200_8mb.sh | 9 |
4 files changed, 36 insertions, 0 deletions
diff --git a/src/board/taurinus_x200_4mb.sh b/src/board/taurinus_x200_4mb.sh index 6e0a3ca..8b8bbe5 100644 --- a/src/board/taurinus_x200_4mb.sh +++ b/src/board/taurinus_x200_4mb.sh @@ -50,6 +50,15 @@ board_taurinus_x200_4mb_get_dists() return 0 } +board_taurinus_x200_4mb_prepare_rom() +{ + if ich9_prepare_rom; then + return 0 + else + return 1 + fi +} + board_taurinus_x200_4mb_register() { register_board 'taurinus_x200_4mb' diff --git a/src/board/taurinus_x200_8mb.sh b/src/board/taurinus_x200_8mb.sh index 31a2220..13ae1b3 100644 --- a/src/board/taurinus_x200_8mb.sh +++ b/src/board/taurinus_x200_8mb.sh @@ -50,6 +50,15 @@ board_taurinus_x200_8mb_get_dists() return 0 } +board_taurinus_x200_8mb_prepare_rom() +{ + if ich9_prepare_rom; then + return 0 + else + return 1 + fi +} + board_taurinus_x200_8mb_register() { register_board 'taurinus_x200_8mb' diff --git a/src/board/x200_4mb.sh b/src/board/x200_4mb.sh index 83cdafd..26aaf73 100644 --- a/src/board/x200_4mb.sh +++ b/src/board/x200_4mb.sh @@ -50,6 +50,15 @@ board_x200_4mb_get_dists() return 0 } +board_x200_4mb_prepare_rom() +{ + if ich9_prepare_rom; then + return 0 + else + return 1 + fi +} + board_x200_4mb_register() { register_board 'x200_4mb' diff --git a/src/board/x200_8mb.sh b/src/board/x200_8mb.sh index 228e4a2..413b6eb 100644 --- a/src/board/x200_8mb.sh +++ b/src/board/x200_8mb.sh @@ -50,6 +50,15 @@ board_x200_8mb_get_dists() return 0 } +board_x200_8mb_prepare_rom() +{ + if ich9_prepare_rom; then + return 0 + else + return 1 + fi +} + board_x200_8mb_register() { register_board 'x200_8mb' |