NICはcoLinuxのをそのまま使用
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# status | |
set -g status-fg cyan | |
set -g status-bg black | |
set -g status-left-length 30 | |
set -g status-left '#[fg=white,bg=black]#H#[fg=white]:#[fg=white][#S#[fg=white]][#[default]' | |
set -g status-right '#[fg=black,bg=cyan,bold] [%Y-%m-%d(%a) %H:%M]#[default]' | |
# window-status-current | |
setw -g window-status-current-fg black |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo aptitude install python-software-properties bison flex texinfo libtool automake libncurses5-dev git subversion gcc gcc-4.6 g++ g++-4.6 make gperf gawk | |
sudo add-apt-repository ppa:linaro-maintainers/toolchain | |
sudo aptitude update | |
============================================================== | |
mkdir ~/raspi | |
mkdir ~/raspi/cross |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd ~/raspi | |
git clone https://github.com/raspberrypi/linux.git | |
wget http://xecdesign.com/downloads/linux-qemu/linux-arm.patch | |
patch -p1 -d linux/ < linux-arm.patch | |
cd ~/raspi/linux | |
make ARCH=arm versatile_defconfig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo aptitude install libarchive-dev bsdtar | |
git clone git://projects.archlinux.org/pacman.git | |
cd pacman | |
./autogen.sh | |
./configure --disable-doc | |
make | |
sudo make install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
yaourt -S core/popt | |
yaourt -S extra/slang | |
yaourt -S extra/tcl | |
yaourt -S extra/python2 | |
yaourt -S aur/newt | |
edit PKGBUILD | |
============================================================================= | |
# Maintainer: TDY <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ftp://WebUser:[email protected]/cn/wlan/RTL819xC_USB_linux_v3.4.4_4749.20120806.zip | |
/etc/modprobe.d/8192cu.conf | |
options 8192cu rtw_power_mgnt=0 rtw_enusbss=0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkimage -A arm -C none -O linux -T kernel -d ../kernel/linux/arch/arm/boot/zImage -a 0x00010000 -e 0x00010000 zImage.uimg | |
mkimage -A arm -C none -O linux -T ramdisk -d initramfs.gz -a 0x00800000 -e 0x00800000 rootfs.uimg | |
dd if=/dev/zero of=flash.bin bs=1 count=6M | |
dd if=../boot/u-boot-2012.07/u-boot.bin of=flash.bin conv=notrunc bs=1 | |
dd if=zImage.uimg of=flash.bin conv=notrunc bs=1 seek=2M | |
dd if=rootfs.uimg of=flash.bin conv=notrunc bs=1 seek=4M |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
yaourt -S extra/openjdk6 | |
sudo ln -s /usr/lib/libffi.so.6.0.0 /usr/lib/libffi.so.5 |
OlderNewer