在线看毛片网站电影-亚洲国产欧美日韩精品一区二区三区,国产欧美乱夫不卡无乱码,国产精品欧美久久久天天影视,精品一区二区三区视频在线观看,亚洲国产精品人成乱码天天看,日韩久久久一区,91精品国产91免费

<abbr id="27omo"></abbr>

<menu id="27omo"><dl id="27omo"></dl></menu>
    • <label id="27omo"><tt id="27omo"></tt></label>

      新聞中心

      EEPW首頁(yè) > 嵌入式系統(tǒng) > 設(shè)計(jì)應(yīng)用 > 移植mtd-utils-20080508到9G9260開(kāi)發(fā)板

      移植mtd-utils-20080508到9G9260開(kāi)發(fā)板

      作者: 時(shí)間:2011-06-29 來(lái)源:網(wǎng)絡(luò) 收藏

      1,下載解壓源碼:

      本文引用地址:http://www.biyoush.com/article/150547.htm

      root@yuanxh-desktop:/home/yuanxh/sam9260# wget http://debian.mirror.inra.fr/debian/pool/main/m/mtd-utils/mtd-utils_20080508.orig.tar.gz

      root@yuanxh-desktop:/home/yuanxh/sam9260# wget http://www.zlib.net/zlib-1.2.3.tar.gz

      root@yuanxh-desktop:/home/yuanxh/sam9260# wget http://www.oberhumer.com/opensource/lzo/download/lzo-2.03.tar.gz

      root@yuanxh-desktop:/home/yuanxh/sam9260# tar xzvf zlib-1.2.3.tar.gz

      root@yuanxh-desktop:/home/yuanxh/sam9260# mv zlib-1.2.3 zlib-1.2.3-9g9260

      root@yuanxh-desktop:/home/yuanxh/sam9260# tar xzvf lzo-2.03.tar.gz

      root@yuanxh-desktop:/home/yuanxh/sam9260# mv lzo-2.03 lzo-2.03-9g9260

      root@yuanxh-desktop:/home/yuanxh/sam9260# tar xzvf mtd-utils_20080508.orig.tar.gz

      root@yuanxh-desktop:/home/yuanxh/sam9260# mv -9g9260

      2,編譯安裝zlib:

      root@yuanxh-desktop:/home/yuanxh/sam9260# cd zlib-1.2.3-9g9260

      root@yuanxh-desktop:/home/yuanxh/sam9260/zlib-1.2.3-9g9260# CC=arm-linux-gcc ./configure --shared --prefix=/usr/zlib-1.2.3

      root@yuanxh-desktop:/home/yuanxh/sam9260/zlib-1.2.3-9g9260# make

      root@yuanxh-desktop:/home/yuanxh/sam9260/zlib-1.2.3-9g9260# make install

      root@yuanxh-desktop:/home/yuanxh/sam9260/zlib-1.2.3-9g9260# cd ..

      3,編譯安裝lzo:

      root@yuanxh-desktop:/home/yuanxh/sam9260# cd lzo-2.03-9g9260/

      root@yuanxh-desktop:/home/yuanxh/sam9260/lzo-2.03-9g9260# CC=arm-linux-gcc ./configure --host=arm-linux --prefix=/usr/lzo-2.03

      root@yuanxh-desktop:/home/yuanxh/sam9260/lzo-2.03-9g9260# make

      root@yuanxh-desktop:/home/yuanxh/sam9260/lzo-2.03-9g9260# make install

      root@yuanxh-desktop:/home/yuanxh/sam9260/lzo-2.03-9g9260# cd ..

      4,修改mtd-utils的Makefile文件

      root@yuanxh-desktop:/home/yuanxh/sam9260# cd -9g9260/

      root@yuanxh-desktop:/home/yuanxh/sam9260/mtd-utils-20080508-9g9260# cp Makefile Makefile.arm

      root@yuanxh-desktop:/home/yuanxh/sam9260/mtd-utils-20080508-9g9260# cp Makefile Makefile.x86

      修改Makefile.arm文件

      root@yuanxh-desktop:/home/yuanxh/sam9260/mtd-utils-20080508-9g9260# vi Makefile.arm

      把第8行的 #CROSS=arm-linux-

      修改為 CROSS=arm-linux-

      把第10行的 CFLAGS := -I./include $(OPTFLAGS)

      修改為

      CFLAGS := -I./include $(OPTFLAGS) -I/usr/zlib-1.2.3/include -I/usr/lzo-2.03/include

      LDFLAGS := -L/usr/zlib-1.2.3/lib -L/usr/lzo-2.03/lib

      把第46行的 make -C $(BUILDDIR)/ubi-utils

      修改為 make -C ubi-utils

      把第46行的 make -C $(BUILDDIR)/ubi-utils clean

      修改為 make -C ubi-utils clean

      5,增加mtd-utils的編譯腳本

      root@yuanxh-desktop:/home/yuanxh/sam9260/mtd-utils-20080508-9g9260# vi mkall

      在 mkall中寫(xiě)入:

      make -f Makefile.$1 clean

      make -f Makefile.$1 WITHOUT_XATTR=1

      root@yuanxh-desktop:/home/yuanxh/sam9260/mtd-utils-20080508-9g9260# vi mkclean

      在 mkall中寫(xiě)入:

      make -f Makefile.$1 clean

      保存后修改可執(zhí)行權(quán)限

      root@yuanxh-desktop:/home/yuanxh/sam9260/mtd-utils-20080508-9g9260# chmod 777 mkall

      root@yuanxh-desktop:/home/yuanxh/sam9260/mtd-utils-20080508-9g9260# chmod 777 mkclean

      6,編譯mtd-utils

      ARM版本

      root@yuanxh-desktop:/home/yuanxh/sam9260/mtd-utils-20080508-9g9260# ./mkall arm

      可以得到flash_eraseall等工具命令

      X86版本

      root@yuanxh-desktop:/home/yuanxh/sam9260/mtd-utils-20080508-9g9260# ./mkall x86

      可以得到mkfs.jffs2等工具命令

      7,清除mtd-utils目標(biāo)碼

      root@yuanxh-desktop:/home/yuanxh/sam9260/mtd-utils-20080508-9g9260# ./mkclean arm

      root@yuanxh-desktop:/home/yuanxh/sam9260/mtd-utils-20080508-9g9260# ./mkclean x86



      評(píng)論


      相關(guān)推薦

      技術(shù)專(zhuān)區(qū)

      關(guān)閉