[cygwin] error while loading shared libraries: ?: cannot open shared object file: No such file or directory
Monday, June 8, 2015, 02:28 PM
When you are facing at this error message open up the dependecy walker from here:
http://www.dependencywalker.com/and you will realize that some of your linked libraries dependencies are missing from your system.
[ hozzászólás ] ( 5 megtekintés ) [ 0 trackbackek ] permalink ( 3 / 1579 )
Retro: ASUS mimic CX200 JTAG hacking
Sunday, May 31, 2015, 10:02 AM
Linux,
Qt for Symbian,
Qt for Symbian,
Asus mimic CX200,
Megatec,
ICamView,
English,
JTAG,
UrJTAG
Back in my university years I have had some issues with an Asus MIMIC CX200 camera. One of them got broken after a firmware upgrade so I have decided to fix it with JTAG. I have successfully got to UrJTAG to read the IDCODE of the S3C4510B, but I was unable to detect the flash. Now I know that I have had to tweak the bus driver and reveng the board a bit.
Here are some pics (shot with my Nokia 6230 in VGA res) about the trick:
Thin albanian wires were soldered directly to the pins.
Live together cry together series 100 Ohm level shifter JTAG adapter to LPT port.
I have designed an addon board to expose the CPU's intresting interfaces (2 serial, USB, JTAG)
It is fun to look back to those pictures from now. After 5 years we got to a state when it is easier and cheaper to buy a Rpi to solve the same problem rather than fixing that board...
[ hozzászólás ] ( 29 megtekintés ) [ 0 trackbackek ] permalink kapcsolódó link ( 3 / 3455 )
Compile urJTAG on Windows under cygwin
Ingredients:
urJTAG source from SVN or Git.
Cygwin: install the packagelist from here:
https://dl.dropboxusercontent.com/u/4295670/packagelist with the technology described here:
http://blag.nullteilerfrei.de/2014/01/3 ... -packages/The python binding is broken so run the ./autogen.sh with --disable-python option.
Add
#define WINAPI_FAMILY 2
#define NOUSER
befor, and
#ifdef IN
#undef IN
#endif
#ifdef OUT
#undef OUT
#endif
fter the #include <windows.h> into the sysdep.h
Run
make -j 8 CFLAGS='-Wno-char-subscripts -Wno-unused-value'
[ hozzászólás ] ( 17 megtekintés ) [ 0 trackbackek ] permalink ( 3 / 2198 )