Visual Studio 2008
For 64 bit:
C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\CSharp\Code\1033\Class.zip
For 32 bit:
C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\CSharp\Code\1033\Class.zip
Visual Studio 2010
For 64 bit:
C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\ItemTemplates\CSharp\Code\1033\Class.zip
For 32 bit:
C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE\ItemTemplates\CSharp\Code\1033\Class.zip
- Visual Studio 2008
64-bit
cd C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\
32-bit
cd C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\
Visual Studio 2010
64-bit
cd C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\
32-bit
cd C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE\
- Run this command:
devenv.exe /installvstemplates
posted by admin at 4:09 am
### Section for configuring automatic properties.
[auto-props]
### The format of the entries is:
### file-name-pattern = propname[=value][;propname[=value]…]
### The file-name-pattern can contain wildcards (such as ‘*’ and
### ‘?’). All entries which match (case-insensitively) will be
### applied to the file. Note that auto-props functionality
### must be enabled, which is typically done by setting the
### ‘enable-auto-props’ option.
# *.c = svn:eol-style=native
# *.cpp = svn:eol-style=native
# *.h = svn:keywords=Author Date Id Rev URL;svn:eol-style=native
# *.dsp = svn:eol-style=CRLF
# *.dsw = svn:eol-style=CRLF
# *.sh = svn:eol-style=native;svn:executable
# *.txt = svn:eol-style=native;svn:keywords=Author Date Id Rev URL;
# *.png = svn:mime-type=image/png
# *.jpg = svn:mime-type=image/jpeg
# Makefile = svn:eol-style=native
*.cpp = svn:eol-style=native;svn:keywords=Author Date Id HeadURL Revision
*.hpp = svn:eol-style=native;svn:keywords=Author Date Id HeadURL Revision
*.rc = svn:eol-style=native;svn:keywords=Author Date Id HeadURL Revision
*.rc2 = svn:eol-style=native;svn:keywords=Author Date Id HeadURL Revision
*.cc = svn:eol-style=native;svn:keywords=Author Date Id HeadURL Revision
*.c = svn:eol-style=native;svn:keywords=Author Date Id HeadURL Revision
*.h = svn:eol-style=native;svn:keywords=Author Date Id HeadURL Revision
*.wsf = svn:eol-style=native;svn:keywords=Author Date Id HeadURL Revision
*.js = svn:eol-style=native;svn:keywords=Author Date Id HeadURL Revision
*.htm = svn:eol-style=native;svn:keywords=Author Date Id HeadURL Revision
*.html = svn:eol-style=native;svn:keywords=Author Date Id HeadURL Revision
*.css = svn:eol-style=native;svn:keywords=Author Date Id HeadURL Revision
*.cs = svn:eol-style=native;svn:keywords=Author Date Id HeadURL Revision
Makefile = svn:eol-style=native;svn:keywords=Author Date Id HeadURL Revision
posted by admin at 1:04 am
Make baseimage:
———————
follow instruction:
http://www.angstrom-distribution.org/demo/beagleboard
– make partitions (mkcard.txt)
– copy over MLO and uboot
– untar ext filesystem
– copy over uImage (g-ether to fix OTG crash)
start and burn to nand:
mmcinit
mmc init
fatload mmc 082000000 MLO
nand unlock
nand ecc hw
nandecc hw
nand erase 0 80000
nand write 82000000 0 20000
nand write 82000000 20000 20000
nand write 82000000 40000 20000
nand write 82000000 60000 20000
fatload mmc 0 0x80200000 u-boot.bin
nand unlock
nand ecc sw
nandecc sw
nand erase 80000 160000
nand write 0x80200000 80000 160000
Fix Networking:
——————-
posted by admin at 9:11 am
1. Received a RevC4 beagleboard from sparkfun.com
http://elinux.org/BeagleBoard#Manual is a very good source for all kind of information
2. Connect the beagleboard:
– HDMI (monitor)
– OTG port via MiniB to powered USB hub
-> orange picture on the monitor (which seems to be normal for RevC4 boards)
3. Finally got myself a AT/Everex cable from an old PC and wired it up:
Beagleboard – AT/Everex (red marked size of the cable -> pin 1) – null modem cable – Serial2Usb (UC-232A) – Notebook
Hyperterminal on the COM-port of the Serial2Usb-adapter, 115200,8bit,None,1bit,None and enjoy the booting process
4. Burn an Angstrom Image following (http://beagleboard.org/demo/angstrom)
Download dd for windows
dd –list
dd if=angstrom-demo-20080917.img of=\\?\Device\HarddiskX\Partition0 bs=1M –progress
Note: to fix the USB Host not recognising any devices use a newer uboot.bin and a newer uImage from http://www.angstrom-distribution.org/demo/beagleboard) and to fix the HDMI use the omapfb.videomode below)
configure the uboot:
setenv bootargs ‘console=ttyS2,115200n8 colsole=tty0 root=/dev/mmcblk0p2 rw rootfstype=ext3 rootwait omapfb.vram=0:4M,1:4M omapfb.mode=dvi:hd720-16@60’
setenv bootcmd ‘mmcinit;fatload mmc 0 84000000 uImage;bootm 84000000’
saveenv
4a. Linux alternative:
download uboot, uImage and rootfs from http://www.angstrom-distribution.org/demo/beagleboard
use gparted to make 100mb fat32 partition and an ext3 partition with rest of diskspace
cp uImage and uImage to fat partion and untar the rootfs to ext3 partition
setup env same way as in 4.
fix route after starting Angstrom : route add default gw 192.168.10.1 eth0
mkdir /media/content
opkg -force-overwrite install apache2
wget http://www.dse.nl/~meulenbr/james/james-install (and install james)
TBD: rt3070 (1737:0077) Linksys wirelss
5. Install Ubuntu 9.10 on vmware player machine
– use e1000 as network device
6. follow http://elinux.org/BeagleBoardUbuntu
7. use openembedded to build image
http://wiki.openembedded.net/index.php/OEandYourDistro (requirements)
http://www.angstrom-distribution.org/building-angstrom
use the image from OE/angstrom-dev/deploy/glibc/images/beagleboard (and use the new uboot from above to fix Rev C4 issue)
build clutter following http://groups.google.com/group/beagleboard/browse_thread/thread/97a6ba8e7b6c49db
also build and copy devmem2
posted by admin at 11:02 am
Scan / Notify Files:
FileSystemWatcher (needs new kernel)
posted by admin at 9:06 am
posted by admin at 2:11 am
lsusb (cat /proc/bus/usb/devices)
-> Vendor/ProdID
-> Cfg/If/Alt/Ad
ret = libusb_init(NULL);
libusb_set_debug(NULL,3);
dev = libusb_open_device_with_vid_pid(NULL, Vendor, ProdID);
ret = libusb_set_configuration( dev, Cfg );
ret = libusb_claim_interface(dev,If);
ret = libusb_set_interface_alt_setting( dev, If, Alt );
ret = libusb_interrupt_transfer ( dev, … )
posted by admin at 2:36 am
– Download Google Gears for Mobile
– Copy cab to mobile
– Install cab
Follow http://www.koushikdutta.com/2008/10/adding-google-my-location-to-your.html
posted by admin at 11:35 am
I disabled “Checksum Offload” and/or “Large Segment
Offload” settings on the Properties -> Advanced Settings of your
physical Ethernet adapter. That seems to have fixed the problem for me.
posted by admin at 5:14 am
– install Vista
– tune Vista (UAC disable, Indixierung disable)
– install network driver
– join domain
– update vista
– install other drivers:
Lenovo T500:
– wifi
– modem
– network
– audio
– video
– amt
– chipset
– hotkey
– harddisk airbag
– camera
– presentation manager
– energy manager
– Virus Scanner
– install google.ch in IE
– configure vista
– move user data to D: (either linkfavavorite or %userprofile)
– change explorer options
– change vista update autoreboot (gpedit.msc->Lokaler Computer->Administrative Vorlagen->Windows-Komponenten->Windows Update)
– install programs:
– vmware player (disable NAT, DHCP C:\Program Files (x86)\VMware\VMware Player\vmnetcfg)
– VLC
– TortoiseSVN
– 7zip
– Acrobat Reader
– Live Messenger
– Nero >= 7.11 (download from Nero)
– Acrobat >= 8.1
– CIP
– Behond Compare
– USBee
– FinePrint
– RealVNC
– Corel X3 (install, install SP1, install SP2)
– FreePDF
– Microsoft Visual Studio
– Filezilla
– Source Insight
– Dia
– InnoSetup, ISTool
– Doxygen, Graphviz
– softing can
– Microchip
posted by admin at 11:09 pm