aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ifxmips/extract.py
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2011-02-01 14:35:36 +0000
committerJohn Crispin <blogic@openwrt.org>2011-02-01 14:35:36 +0000
commit27867e06a65143a61a2b43959c82bdfc1fa48ac6 (patch)
tree01eb0ccf485a6841881c9eebf29f636382facdc6 /target/linux/ifxmips/extract.py
parentfa74505585403821207590bfec67c5886b6d216f (diff)
downloadmaster-187ad058-27867e06a65143a61a2b43959c82bdfc1fa48ac6.tar.gz
master-187ad058-27867e06a65143a61a2b43959c82bdfc1fa48ac6.tar.bz2
master-187ad058-27867e06a65143a61a2b43959c82bdfc1fa48ac6.zip
[ifxmips]
* drop codebase in favour of lantiq target git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25277 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ifxmips/extract.py')
-rwxr-xr-xtarget/linux/ifxmips/extract.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/target/linux/ifxmips/extract.py b/target/linux/ifxmips/extract.py
deleted file mode 100755
index 91b4a578d6..0000000000
--- a/target/linux/ifxmips/extract.py
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/usr/bin/python
-from sys import stdin, stdout
-while True:
- c = stdin.read(2)
- if len(c) < 2:
- break
- n1, n2 = ord(c[0]), ord(c[1])
- stdout.write(chr(((n2 & 15) << 4) + ((n2 & 240) >> 4)))
- stdout.write(chr(((n1 & 15) << 4) + ((n1 & 240) >> 4)))