'임베디드'에 해당되는 글 112건

  1. 2012.10.12 mkfs.jffs2 버그
  2. 2012.07.10 CoOS - Arm Cortex M3 용 RTOS
  3. 2012.04.24 lrzsz-0.12.20 cross compile
  4. 2012.04.23 freetype-2.3.9 cross compile
  5. 2012.04.23 libjpeg release 8d cross compile
  6. 2012.04.23 sqlite3 cross compile
  7. 2012.04.23 ntpclient cross compile
  8. 2012.04.06 u-boot 환경설정값
  9. 2012.04.05 stage1 app information
  10. 2012.03.28 [LPC3250] bootargs

mkfs.jffs2 버그

mkfs.jffs2 버그 중에 Verbose 모드로 작업 중 내용을 보여달라는 옵션 "-v"을 사용할 경우 segmentation fault을 일으키는 문제가 있다.

-v을 사용하지 않고 작업하면 잘된다.

'임베디드' 카테고리의 다른 글

CoOS - Arm Cortex M3 용 RTOS  (0) 2012.07.10
libpng 1.5.8 cross compile  (0) 2012.02.07
zlib 1.2.6 cross compile  (0) 2012.02.07
u-boot loader(the Universal Boot Loader) 사이트 및 버전  (0) 2012.02.02
busybox용 tftp 사용법  (0) 2011.12.13

CoOS - Arm Cortex M3 용 RTOS

http://www.coocox.org/CoOS.htm


ARM Coretex-M3용 free RTOS다.

커널이 974byte 밖에 안된다.

Semaphore, Mutex, Flag, Mailbox and Queue 을 지원한다.


CoOS User Guide 다운

CooCox_CoOS_User_Guide.pdf



'임베디드' 카테고리의 다른 글

mkfs.jffs2 버그  (0) 2012.10.12
libpng 1.5.8 cross compile  (0) 2012.02.07
zlib 1.2.6 cross compile  (0) 2012.02.07
u-boot loader(the Universal Boot Loader) 사이트 및 버전  (0) 2012.02.02
busybox용 tftp 사용법  (0) 2011.12.13

lrzsz-0.12.20 cross compile

http://ohse.de/uwe/software/lrzsz.html 에서 다운로드 받는다.


CC=arm-vfp-linux-gnu-gcc ./configure --prefix=`pwd`/_install --host=arm-vfp-linux-gnu \

 --target=arm-vfp-linux-gnu

make

make install

'임베디드 > LPC3250' 카테고리의 다른 글

freetype-2.3.9 cross compile  (0) 2012.04.23
libjpeg release 8d cross compile  (0) 2012.04.23
sqlite3 cross compile  (0) 2012.04.23
ntpclient cross compile  (0) 2012.04.23
u-boot 환경설정값  (0) 2012.04.06

freetype-2.3.9 cross compile

http://www.freetype.org 에서 freetyp-2.3.9을 다운로드

./configure --prefix=`pwd`/_install --host=arm-vfp-linux-gnu --enable-static

make

make install


'임베디드 > LPC3250' 카테고리의 다른 글

lrzsz-0.12.20 cross compile  (0) 2012.04.24
libjpeg release 8d cross compile  (0) 2012.04.23
sqlite3 cross compile  (0) 2012.04.23
ntpclient cross compile  (0) 2012.04.23
u-boot 환경설정값  (0) 2012.04.06

libjpeg release 8d cross compile

http://www.ijg.org/  에서 최신 릴리즈 소스를 다운로드 받는다.


./configure --prefix=`pwd`/_install --host=arm-vfp-linux-gnu

make

make install


하면 된다.

'임베디드 > LPC3250' 카테고리의 다른 글

lrzsz-0.12.20 cross compile  (0) 2012.04.24
freetype-2.3.9 cross compile  (0) 2012.04.23
sqlite3 cross compile  (0) 2012.04.23
ntpclient cross compile  (0) 2012.04.23
u-boot 환경설정값  (0) 2012.04.06

sqlite3 cross compile

http://www.sqlite3.org 에서 sqlite-autoconf-3071100.tar.gz을 다운받음


./configure --prefix=`pwd`/_install --host=arm-vfp-linux-gnu

make

make install

로 컴파일 완료


'임베디드 > LPC3250' 카테고리의 다른 글

freetype-2.3.9 cross compile  (0) 2012.04.23
libjpeg release 8d cross compile  (0) 2012.04.23
ntpclient cross compile  (0) 2012.04.23
u-boot 환경설정값  (0) 2012.04.06
stage1 app information  (0) 2012.04.05

ntpclient cross compile

tiny util로 사용할 ntp client이다.

다운로드 받을 주소는

http://doolittle.icarus.com/ntpclient/


컴파일 방법은 Makefile을 열어서


CC = arm-vfp-linux-gnu-gcc

을 추가한 후에 make 해주면 된다.

'임베디드 > LPC3250' 카테고리의 다른 글

libjpeg release 8d cross compile  (0) 2012.04.23
sqlite3 cross compile  (0) 2012.04.23
u-boot 환경설정값  (0) 2012.04.06
stage1 app information  (0) 2012.04.05
[LPC3250] bootargs  (0) 2012.03.28

u-boot 환경설정값

uboot> printenv
bootcmd=nboot 80100000 0 1c0000;bootm
bootdelay=3
baudrate=115200
ipaddr=192.192.192.205
gatewayip=192.192.192.101
netmask=255.255.255.0
serverip=192.192.192.163
bootfile=uImage
bootargs=console=ttyS0,115200n81 root=/dev/mtdblock3 rw rootfstype=jffs2 ip=192.192.192.205 init=/sbin/init
stdin=serial
stdout=serial
stderr=serial

Environment size: 327/262140 bytes

'임베디드 > LPC3250' 카테고리의 다른 글

sqlite3 cross compile  (0) 2012.04.23
ntpclient cross compile  (0) 2012.04.23
stage1 app information  (0) 2012.04.05
[LPC3250] bootargs  (0) 2012.03.28
[LPC3250] root 파일 시스템 파일명  (0) 2012.03.28

stage1 app information

TIMLL3250>info
Prompt bootup timeout (secs) = 50000
FLASH device : detected
 Number of FLASH blocks   : 1024
 FLASH pages per block    : 64
 FLASH bytes per page     : 2048
 Total FLASH size (Mbytes): 128
Stage 1 loader number of blocks used: 6
File loaded in memory: None
No image stored in FLASH
Autoboot source                  : Disabled
SDRAM type/size: Low power SDRAM 64MB
MMU : Enabled
ARM system clock (Hz) = 208000000
HCLK (Hz)             = 104000000
Peripheral clock (Hz) = 13000000
Ethernet MAC address: 00:01:90:00:c0:81
NAND FLASH vendor    : 0xec
NAND FLASH device ID : 0xf1

TIMLL3250>

'임베디드 > LPC3250' 카테고리의 다른 글

ntpclient cross compile  (0) 2012.04.23
u-boot 환경설정값  (0) 2012.04.06
[LPC3250] bootargs  (0) 2012.03.28
[LPC3250] root 파일 시스템 파일명  (0) 2012.03.28
[LPC3250] Kernel boot message  (0) 2012.03.28

[LPC3250] bootargs

uboot에서 사용하는 bootargs 다

console=ttyS0,115200n81 root=1f03 rw rootfstype=jffs2 ip=192.168.10.104 init=/sbin/init


nfs용 bootargs

console=ttyS0,115200n81 root=/dev/nfs rw nfsroot=192.168.10.101:/home/shellbt/source/ramdisks/LPC3250/mini3250 ip=192.168.10.104


'임베디드 > LPC3250' 카테고리의 다른 글

u-boot 환경설정값  (0) 2012.04.06
stage1 app information  (0) 2012.04.05
[LPC3250] root 파일 시스템 파일명  (0) 2012.03.28
[LPC3250] Kernel boot message  (0) 2012.03.28
[LPC3250] kernel partition  (0) 2012.03.28
prev 1 2 3 4 ··· 12 next