From cb85a901f2e7b33c669200fc8854c2525231cb8d Mon Sep 17 00:00:00 2001 From: Oleg Hahm Date: Thu, 31 Jul 2014 19:42:06 +0200 Subject: [PATCH] pyterm: renamed pyterm.py to pyterm --- boards/arduino-due/Makefile.include | 2 +- boards/msb-430-common/Makefile.include | 2 +- boards/msba2-common/Makefile.include | 2 +- boards/redbee-econotag/Makefile.include | 2 +- boards/stm32f0discovery/Makefile.include | 2 +- boards/stm32f4discovery/Makefile.include | 2 +- boards/telosb/Makefile.include | 2 +- boards/udoo/Makefile.include | 2 +- boards/z1/Makefile.include | 2 +- dist/tools/pyterm/{pyterm.py => pyterm} | 0 dist/tools/pyterm/setup.py | 2 +- 11 files changed, 10 insertions(+), 10 deletions(-) rename dist/tools/pyterm/{pyterm.py => pyterm} (100%) diff --git a/boards/arduino-due/Makefile.include b/boards/arduino-due/Makefile.include index a3f65f171..32fa83330 100644 --- a/boards/arduino-due/Makefile.include +++ b/boards/arduino-due/Makefile.include @@ -9,7 +9,7 @@ export AS = $(PREFIX)as export LINK = $(PREFIX)gcc export SIZE = $(PREFIX)size export OBJCOPY = $(PREFIX)objcopy -export TERMPROG = $(RIOTBASE)/dist/tools/pyterm/pyterm.py +export TERMPROG = $(RIOTBASE)/dist/tools/pyterm/pyterm #define the flash-tool and default port depending on the host operating system OS := $(shell uname) diff --git a/boards/msb-430-common/Makefile.include b/boards/msb-430-common/Makefile.include index 06ba075b9..149f9fd07 100644 --- a/boards/msb-430-common/Makefile.include +++ b/boards/msb-430-common/Makefile.include @@ -13,7 +13,7 @@ export LINK = $(PREFIX)gcc export SIZE = $(PREFIX)size export OBJCOPY = $(PREFIX)objcopy export LINKFLAGS = -mmcu=$(MCU) -lgcc -TERMPROG = $(RIOTBASE)/dist/tools/pyterm/pyterm.py +TERMPROG = $(RIOTBASE)/dist/tools/pyterm/pyterm export FLASHER ?= mspdebug export PORT ?= /dev/ttyUSB0 diff --git a/boards/msba2-common/Makefile.include b/boards/msba2-common/Makefile.include index 5869e5554..c7cc56c77 100644 --- a/boards/msba2-common/Makefile.include +++ b/boards/msba2-common/Makefile.include @@ -13,7 +13,7 @@ export LINK = $(PREFIX)gcc export SIZE = $(PREFIX)size export OBJCOPY = $(PREFIX)objcopy FLASHER = lpc2k_pgm -TERMPROG ?= $(RIOTBASE)/dist/tools/pyterm/pyterm.py +TERMPROG ?= $(RIOTBASE)/dist/tools/pyterm/pyterm LINKFLAGS = -gdwarf-2 -mcpu=arm7tdmi-s -static -lgcc -nostartfiles -T$(RIOTBASE)/cpu/$(CPU)/linkerscript.x ifeq ($(strip $(PORT)),) diff --git a/boards/redbee-econotag/Makefile.include b/boards/redbee-econotag/Makefile.include index 2f9f81862..2cedc3c68 100644 --- a/boards/redbee-econotag/Makefile.include +++ b/boards/redbee-econotag/Makefile.include @@ -18,7 +18,7 @@ export LINK = $(PREFIX)gcc export SIZE = $(PREFIX)size export OBJCOPY = $(PREFIX)objcopy FLASHER = mc1322x-load.pl -TERM = pyterm.py +TERM = pyterm LINKFLAGS = -mcpu=arm7tdmi-s -static -lgcc -nostartfiles -T$(RIOTBASE)/cpu/$(CPU)/mc1322x.lds ifeq ($(strip $(PORT)),) diff --git a/boards/stm32f0discovery/Makefile.include b/boards/stm32f0discovery/Makefile.include index 463284016..2de34acfa 100644 --- a/boards/stm32f0discovery/Makefile.include +++ b/boards/stm32f0discovery/Makefile.include @@ -22,7 +22,7 @@ export AS = $(PREFIX)as export LINK = $(PREFIX)gcc export SIZE = $(PREFIX)size export OBJCOPY = $(PREFIX)objcopy -export TERMPROG = $(RIOTBASE)/dist/tools/pyterm/pyterm.py +export TERMPROG = $(RIOTBASE)/dist/tools/pyterm/pyterm export FLASHER = st-flash export DEBUGGER = $(RIOTBOARD)/$(BOARD)/dist/debug.sh diff --git a/boards/stm32f4discovery/Makefile.include b/boards/stm32f4discovery/Makefile.include index d65c6efd6..45aa0ad92 100644 --- a/boards/stm32f4discovery/Makefile.include +++ b/boards/stm32f4discovery/Makefile.include @@ -22,7 +22,7 @@ export AS = $(PREFIX)as export LINK = $(PREFIX)gcc export SIZE = $(PREFIX)size export OBJCOPY = $(PREFIX)objcopy -export TERMPROG = $(RIOTBASE)/dist/tools/pyterm/pyterm.py +export TERMPROG = $(RIOTBASE)/dist/tools/pyterm/pyterm export FLASHER = st-flash export DEBUGGER = $(RIOTBOARD)/$(BOARD)/dist/debug.sh diff --git a/boards/telosb/Makefile.include b/boards/telosb/Makefile.include index 1e5790f70..af5153818 100644 --- a/boards/telosb/Makefile.include +++ b/boards/telosb/Makefile.include @@ -14,7 +14,7 @@ export LINK = $(PREFIX)gcc export SIZE = $(PREFIX)size export OBJCOPY = $(PREFIX)objcopy export LINKFLAGS = -mmcu=$(MCU) -lgcc $(BINDIR)msp430_common/startup.o -export TERMPROG = $(RIOTBASE)/dist/tools/pyterm/pyterm.py +export TERMPROG = $(RIOTBASE)/dist/tools/pyterm/pyterm export FLASHER = goodfet.bsl ifeq ($(strip $(PORT)),) export PORT = /dev/ttyUSB0 diff --git a/boards/udoo/Makefile.include b/boards/udoo/Makefile.include index f924c592e..8fcc8e1ad 100644 --- a/boards/udoo/Makefile.include +++ b/boards/udoo/Makefile.include @@ -9,7 +9,7 @@ export AS = $(PREFIX)as export LINK = $(PREFIX)gcc export SIZE = $(PREFIX)size export OBJCOPY = $(PREFIX)objcopy -export TERMPROG = $(RIOTBASE)/dist/tools/pyterm/pyterm.py +export TERMPROG = $(RIOTBASE)/dist/tools/pyterm/pyterm #define the flash-tool and default port depending on the host operating system OS := $(shell uname) diff --git a/boards/z1/Makefile.include b/boards/z1/Makefile.include index 843f2e133..f2ed73a40 100644 --- a/boards/z1/Makefile.include +++ b/boards/z1/Makefile.include @@ -14,7 +14,7 @@ export LINK = $(PREFIX)gcc export SIZE = $(PREFIX)size export OBJCOPY = $(PREFIX)objcopy export LINKFLAGS = -mmcu=$(MCU) -lgcc $(BINDIR)msp430_common/startup.o -export TERMPROG = $(RIOTBASE)/dist/tools/pyterm/pyterm.py +export TERMPROG = $(RIOTBASE)/dist/tools/pyterm/pyterm export FLASHER = goodfet.bsl ifeq ($(strip $(PORT)),) export PORT = /dev/ttyUSB0 diff --git a/dist/tools/pyterm/pyterm.py b/dist/tools/pyterm/pyterm similarity index 100% rename from dist/tools/pyterm/pyterm.py rename to dist/tools/pyterm/pyterm diff --git a/dist/tools/pyterm/setup.py b/dist/tools/pyterm/setup.py index 06b7b089a..f9b982585 100755 --- a/dist/tools/pyterm/setup.py +++ b/dist/tools/pyterm/setup.py @@ -12,4 +12,4 @@ setup(name="pyterm", author_email="ohahm@fu-berlin.de", url="http://riot-os.org/", install_requires=["pyserial"], - scripts=["pyterm.py"]) + scripts=["pyterm"])