= u-boot = -- [김도집] [[DateTime(2005-08-12T07:51:50)]] [[TableOfContents]] == u-boot란? == == u-boot 구할 수 있는 곳은? == == u-boot 소스 분석 == === Nand 플래시 === common/cmd_nand.c 기본 데이터 구조체 {{{#!vim c struct nand_chip int page_shift; u_char *data_buf; u_char *data_cache; int cache_page; u_char ecc_code_buf[6] u_char reserved[2]; ... uint oobblock; uint oobsize; uint eccsize; int bus16; }; }}} ||'''field'''||'''설명'''|| ||oobblock||OOB를 제외한 페이지의 크기 eg. 512|| ||oobsize||OOB의 크기 eg. 16|| == 참고 == * [http://www.denx.de/twiki/bin/view/DULG/Manual U-Boot Manual]