라즈베리파이 활용법 주요 포스트

http://wiki.rasplay.org/doku.php

 

임베디드 환경 설정

http://cafe.naver.com/openrt/5564

http://embejide.tistory.com/40

라이즈베리파이 업데이트 및 업그레이드를 실시

 

 

 

 

 

 

출처

TFT LCD 내가 쓰는 것 https://www.raspberrypi.org/forums/viewtopic.php?f=45&t=105797

GPIO C++  https://github.com/timknapen/Raspberry/tree/master/mmapGPIO

시리얼 통신 http://embejide.tistory.com/40

gpio.tar.gz

 

 

 

 

편집기로 파일을 연다. 편집기로는 vim을 사용함

없을시 sudo apt-get install vim

 

vim /etc/inittab

 

파일안의

1:2345:respawn:/sbin/getty --noclear 38400 tty1 내용을 주석처리 후

아래에

1:2345:respawn:/bin/login -f pi tty1 </dev/tty1 >/dev/tty1 2>&1

추가  

 

아래와 동일

 

#1:2345:respawn:/sbin/getty --noclear 38400 tty1   주석처리후 추가
1:2345:respawn:/bin/login -f pi tty1 </dev/tty1 >/dev/tty1 2>&1

 

재부팅!!! 완료

 

참고 - http://echo.tistory.com/37

'라즈베리파이2[rpi2]' 카테고리의 다른 글

라즈베리파이 강좌  (0) 2015.05.28
라즈베리파이 시리얼통신  (0) 2015.05.22
라즈베리파이 GPIO 라이버리 설치  (0) 2015.05.13
라즈베리파이 커널 컴파일  (0) 2015.05.06
라즈베리파이2시작  (0) 2015.05.06

 

 

 

크로스 컴파일 설치

 root@li:/home/li# apt-get install gcc-4.6-arm-linux-gnueabi

 

라스베리파이 소스 및 툴체인 다운로드

root@li:/opt/rpi2# git clone https://github.com/raspberrypi/tools.git

 

For 64bit, use /tools/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian-x64/bin.  패스를 걸어줘야 한다고한다.

bashrc

 

 

root@li:/opt/rpi2/kernel# git clone https://github.com/raspberrypi/linux.git

 

라즈베리파이투 make bcm2709_defconfig     원 : make bcmrpi_defconfig

 

컴파일 중 에러

 

 

/bin/sh: 1: bc: not found
kernel/time/Makefile:32: recipe for target 'kernel/time/timeconst.h' failed
make[2]: *** [kernel/time/timeconst.h] Error 127
scripts/Makefile.build:402: recipe for target 'kernel/time' failed
make[1]: *** [kernel/time] Error 2
Makefile:937: recipe for target 'kernel' failed
make: *** [kernel] Error 2
make: *** Waiting for unfinished jobs....
 

apt-get install bc

 

 

 

 

공식 사시트 : https://www.raspberrypi.org/documentation/linux/kernel/building.md

 

https://learn.adafruit.com/raspberry-pi-kernel-o-matic/build-a-kernel

사양

Architecture

ARMv7l Cortex-A7

 

Architecture : ARMv7I Cortex-A7

Processor   : Broadcom BCM2836 900MHz

RAM           : 1024MB

Ethernet      : 10/100

 

기본설치시 아이디는 pi  비밀번호 rasberry

install arch linux  :  http://archlinuxarm.org/platforms/armv7/broadcom/raspberry-pi-2

                            http://sjoerd.luon.net/posts/2015/02/debian-jessie-on-rpi2/

 

 vi .bashrc

export PATH=/opt/rpi2/tools/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspb    ian-x64/arm-linux-gnueabihf/bin

source .bashrc 환경설정

 

//라즈베리파이

/usr/src/rasp/linux/arch/arm/configs  에 .config설정파일 이있음

root@raspberrypi:/usr/src/rasp/linux# make bcm2709_defconfig

//여기까지

 

 

make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- bcm2709_defconfig menuconfig

에러발생 gcc: error trying to exec 'cc1': execvp: No such file or directory

참고 :http://ubuntuforums.org/showthread.php?t=2213325

 

 

 

 

 make ARCH=arm CROSS_COMPILE=${CCPREFIX} -j8

15시 50분 시작

       20분

......아무래도 다시

 

경로에 Image zImage 생성

/opt/rpi2/kernel/linux/arch/arm/boot 

 

 

 

 

Qt  rpi2 설치 http://minimonk.net/5421

 

설치준비

 

SD 카드 : https://www.sdcard.org/downloads/formatter_4/eula_mac/

 

window 환경에서 : 이미지 굽기 http://sourceforge.net/projects/win32diskimager/

 

외국 사이트 :  http://sysprogs.com/VisualKernel/tutorials/raspberry/buildkernel/

 

      http://ndlessrain.tistory.com/entry/%EB%9D%BC%EC%A6%88%EB%B2%A0%EB%A6%AC%ED%8C%8C%EC%9D%B4-%EB%A7%A4%EB%89%B4%EC%96%BC

 

 

+ Recent posts