FreeCalypso > hg > fc-magnetite
changeset 535:bb9a08797022
configure and components scripts: added support for c155 target
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 05 Nov 2018 17:30:51 +0000 |
parents | 6c96725718c3 |
children | ae18f9aad7ce |
files | components/main-init components/riviera_cust_flash configure.sh |
diffstat | 3 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/components/main-init Mon Nov 05 17:10:06 2018 +0000 +++ b/components/main-init Mon Nov 05 17:30:51 2018 +0000 @@ -5,7 +5,7 @@ CFLAGS="-mn -mt -o -x -mw -me -pw2" CPPFLAGS="-DTOOL_CHOICE=0 -D_TMS470" -if [ "$TARGET" = c139 -o "$TARGET" = c11x ] +if [ "$TARGET" = c11x -o "$TARGET" = c139 -o "$TARGET" = c155 ] then CPPFLAGS="$CPPFLAGS -DCONFIG_RVTMUX_ON_MODEM" fi
--- a/components/riviera_cust_flash Mon Nov 05 17:10:06 2018 +0000 +++ b/components/riviera_cust_flash Mon Nov 05 17:30:51 2018 +0000 @@ -6,7 +6,7 @@ if [ "$MMI" = 0 ] then case "$TARGET" in - c11x|c139) + c11x|c139|c155) CPPFLAGS="$CPPFLAGS -DPSEUDO_MODEM_KEEPALIVE" ;; pirelli)
--- a/configure.sh Mon Nov 05 17:10:06 2018 +0000 +++ b/configure.sh Mon Nov 05 17:30:51 2018 +0000 @@ -85,7 +85,7 @@ # UI config default based on target -if [ "$TARGET" = c139 -o "$TARGET" = c11x ] +if [ "$TARGET" = c11x -o "$TARGET" = c139 -o "$TARGET" = c155 ] then UI_CONFIG=84x48 else @@ -274,7 +274,7 @@ fi cat makefile-frags/link-steps >> $BUILD_DIR/Makefile -if [ "$TARGET" != c139 -a "$TARGET" != c11x ] +if [ "$TARGET" != c11x -a "$TARGET" != c139 -a "$TARGET" != c155 ] then cat makefile-frags/m0-to-bin-std >> $BUILD_DIR/Makefile else