Raspberry Pi
-
[RPI] SD 카드 만들기Raspberry Pi 2015. 8. 25. 22:41
라즈베리파이는 첫번째 fat32 파티션에서 bootcode.bin -> start.elf -> kernel.img 파일을 로드하여 실행한다. 첫번째 파티션을 fat32 으로 포맷하고 firmware 파일 복사하면 기본적인 부팅 가능한 sd 카드가 만들어지며, 두번째 파티션을 만들어 파일시스템을 복사 후 cmdline.txt 파일을 손보면 리눅스의 부팅이 가능한 상태가 된다. # parted /dev/sdb(parted) mktable msdos(parted) unit s(parted) mkpart primary fat16 8192 163840(parted) mkpart primary ext4 165888 -1 # mkfs.fat32 /dev/sdb1# mkfs.ext4 /dev/sdb2 # mount /..
-
RPi - BCM2835 ARM PeripheralsRaspberry Pi 2013. 11. 4. 21:33
BCM2835 ARM Peripherals http://www.raspberrypi.org/wp-content/uploads/2012/02/BCM2835-ARM-Peripherals.pdf 1 Introduction 1.1 Overview 1.2 Address map 1.2.1 Diagrammatic overview 1.2.2 ARM virtual addresses (standard Linux kernel only) 1.2.3 ARM physical addresses 1.2.4 Bus addresses 1.3 Peripheral access precautions for correct memory ordering 2 Auxiliaries: UART1 & SPI1, SPI2 2.1 OverView 2.1.1..
-
RPi Booting ProcessRaspberry Pi 2013. 10. 18. 14:38
http://lynxline.com/lab-3-r-pi-booting-process/ http://kernelnomicon.org/?p=109 Starting the Rpi with your own program http://bassetlug.org.uk/node/9 Rpi - Operating System Development http://aros-exec.org/modules/newbb/viewtopic.php?topic_id=7246 GPU Firmware Required for Boot? http://www.raspberrypi.org/phpBB3/viewtopic.php?f=2&t=2567 http://wiki.osdev.org/ARM_RaspberryPi http://www.youtube.co..
-
RPi 를 위한 SD카드 파티션Raspberry Pi 2013. 10. 18. 14:01
파티션 테이블 만들기참조: http://myembeddedlinux.blogspot.kr/2013/05/partition-your-sd-card-for-pi.htmlhttp://elinux.org/RPi_Advanced_Setup 알아야 할 내용CHS 와 LBA : http://lunatine.net/post/40829528445/faq-cylinder-chs-vs-lbafdisk 사용법 : Create the parition table 1. Plug your SD Card to your computer. 2. Identify your /dev/ node sudo fdisk -l The output lists your disks : Device Boot Start End Blocks Id System /..
-
RPi를 위한 바닐라 커널 빌드하기Raspberry Pi 2013. 10. 18. 13:11
출처: http://myembeddedlinux.blogspot.kr/2013/05/build-vanilla-kernel-for-raspberry-pi.html Check this post if you're looking for the build instructions. Check this post if you're looking for the git main commands. Raspberry Pi's official kernel git repository : https://github.com/raspberrypi/linux.git We could have cloned this repository, built it and ran a linux on our Pi.... yes we could, but w..
-
RPi Boot SequenceRaspberry Pi 2013. 10. 18. 13:06
출처 : http://myembeddedlinux.blogspot.kr/2013/05/raspberry-pi-boot-sequence.html 참조: http://cafe.naver.com/openrt/2721 http://hardcoding.tistory.com/entry/NAND-Flash-VS-NOR-Flash%EC%9D%98-%EC%B0%A8%EC%9D%B4%EC%A0%90 http://ko.wikipedia.org/wiki/%ED%94%8C%EB%9E%98%EC%8B%9C_%EB%A9%94%EB%AA%A8%EB%A6%AC 라즈베리 파이 부팅순서 최근에는 3단계가 생략 되었다.start.efl 이미지는 현재 2단계에서 부트로더에의해 바로 읽혀진다. 궁굼한것!1.일반적인 개발보드에서의 dd를 이용한..
-
Raspberry PI - Raspbian "wheezy" loginRaspberry Pi 2013. 3. 25. 00:07
Archlinux를 써보고 싶었으나 초기 이미지가 시리얼 설정이 안되어 있어서 Debian 으로 선택했다. 아래는 로그인 아이디와 패스워드 그리고 패스워드 변경에 대한 로그이다.굵은 글씨는 사용자 입력이다. Password 시 화면에 표시되지 않지만 편의상 표시 하였다. Debian GNU/Linux 7.0 raspberrypi ttyAMA0 raspberrypi login: pi Password: raspberry Last login: Sat Feb 9 03:47:38 UTC 2013 on ttyAMA0 Linux raspberrypi 3.6.11+ #371 PREEMPT Thu Feb 7 16:31:35 GMT 2013 armv6l The programs included with the Debian ..