u-boot中的FAT命令

[u-boot: v2013.04][Author: Bo Shen <voice.shen@gmail.com>]1. Source Code<common/cmd_fat.c>此檔案中定義了四個命令:fatload,fatls,fatinfo是定義"#define CONFIG_CMD_FAT"後就包括了。而fatwrite是需要再定義"#define CONFIG_FAT_WRITE"才會出現。2.

i2c tools usage

1. get the source code of i2c toolsreference: http://lm-sensors.org/wiki/I2CTools$ wget http://dl.lm-sensors.org/i2c-tools/releases/i2c-tools-3.1.0.tar.bz22. compile the source code$ tar -jxvf i2c-tools-3.1.0.tar.bz2$ cd i2c-tools-3.1.0$ CC=arm-none-

where bond0 device come from

When debug Linux kernel, there is one more network device with "ifconfig -a", it show a bond0 device. detail information as

Debug U-boot with BDI2000

今天終於把U-boot搞定了。簡單記錄,以作備查。 1. 配置BDI2000 (參考BDI2000手冊)2. 寫設定檔 (參考BDI2000手冊, 以及DDR2和Marvell 88F6281手冊),初始化流程參考u-boot對DDR2的初始化代碼。3. 串連BDI2000與88F6281 target板,上電,然後通過網路telnet上BDI2000.4. 下載u-boot到DDR中(BDI命令:LOAD),(注意,下載ELF檔案到DDR

get network hotplugging working on Ubuntu 12.04 LTS

Issue:   When configure the network with following configuration. Then boot up system, it will automatically dhcp to get IP address from DHCP server.   ---------------------------------  $ vi /etc/network/interfaces  # here auto = allow-auto  auto

修改u-boot的開機logo及顯示過程

[ u-boot: git://git.denx.de/u-boot.git] [tag: v2011.09-rc1 ]修改u-boot的開機logo其實很簡單。請見下面步驟。1. 擷取一張BMP的圖片,修改之,讓其色深為8位,即256色,如果用24位,則顯示出問題,(至於是否能用24位,有待深究)。2. 將製作好的BMP圖片,放置到<u-boot>/tools/logos下面。3.

BITS_TO_LONGS宏的作用

[linux-3.0]BITS_TO_LONGS定義在:include/linux/bitops.h#define BITS_PER_BYTE        8#define BITS_TO_LONGS(nr)    DIV_ROUND_UP(nr, BITS_PER_BYTE * sizeof(long))DIV_ROUND_UP定義在:include/linux/kernel.h (line 58)#define DIV_ROUND_UP(n,d) (((n) + (d) - 1) /

u-boot下的兩個重要資料:bd_t和gd_t

[u-boot: v2013.04][Author: Bo Shen <voice.shen@gmail.com>]眾所周知,u-boot中有兩個重要資料結構,一個是bd_t,另外一個是gd_t。下面分別介紹這兩個資料結構。1. bd_t 此資料結構儲存board相關的資訊。定義:<arch/arm/include/asm/u-boot.h>其具體結構如下:typedef struct bd_info {unsigned intbi_baudrate;/* serial

u-boot中memory(SDRAM/DDR)相關命令 — base

[u-boot: v2013.07-rc2][Author: Bo Shen <voice.shen@gmail.com>]1. 使能base命令通過定義:CONFIG_CMD_MEMORY,

uImage產生過程

當編譯linux的時候,運行make uImage,如果一切正常,最後會產生uImage。如下具體講解uImage產生過程:1. 產生uImag的工具mkimage由arch/arm/boot/Makefile中的MKIMAGE定義MKIMAGE := $(srctree)/scripts/mkuboot.sh mkuboot.sh的作用是去找到是否存在"mkimage",此工具是用來產生最後的uImage。  mkuboot.sh

快事一樁:IE終於恢複原貌

      前不久,因為下載了一個街機遊戲,且此街機遊戲裡面有一個檔案將IE首頁更改為www.9348.cn/205446. 每次開啟IE都會主動開啟此網頁,很是討厭。想盡辦法,都沒有解決掉。      今天上網看貼子,有人說360有個專殺工具叫做360killer,於是抱著試一試的態度,下載下來。進行殺毒,完了之後,重啟電腦,IE恢複正常了。哈哈!     現在,再也不為此事煩惱啦!    一切順心啦!

u-boot中memory(SDRAM/DDR)相關命令 — md

[u-boot: v2013.07-rc2][Author: Bo Shen <voice.shen@gmail.com>]1. 使能md命令通過定義:CONFIG_CMD_MEMORY, 就可以使能md命令。註:由於在<include/config_cmd_default.h>裡面已經有此定義,在板子相關的configure檔案中(位於<include/configs/>),預設情況下,都會include此檔案。所以,u-boot預設會包含此命令。原始碼:&

u-boot中的bdinfo命令

[u-boot: 2013.04][Author: Bo Shen <voice.shen@gmail.com>]1. 使用bdinfo: print board info structure.其原始碼:<common/cmd_bdinfo.c>對於ARM架構,bdinfo列印資訊包括:  -- bd_t (前檔案介紹:http://blog.csdn.net/voice_shen/article/details/8842057)的內容:      --

Cross Compile zlib as static and dynamic library

dynamic zlib library 1. download zlib source code from the following website for new version of it.    http://www.zlib.net/2. uncompress it (tar -zxvf zlib-x.x.x.tgz)3. configure it    ./configure -s4. modify the "Makefile" using the cross toolchain

佛曰——做人的道理

此文轉自: http://blog.csdn.net/jianshe999/article/details/2114128    一、人之所以痛苦,在於追求錯誤的東西。        

Git 命令列自動補全

此文轉自:http://blog.yxwang.me/2010/01/git-completion/Git 命令列自動補全在Pro Git上看到的技巧,git的原始碼包裡的contrib/completion目錄下有個git-completion.bash,把這個檔案儲存到~/.git-completion.bash,然後在.bashrc中加入一行1source

u-boot命令集列表及連結

[u-boot: v2013.04][Author: Bo Shen <voice.shen@gmail.com>]1. ambapp <common/cmd_ambapp.c>: 2. bdinfo <common/cmd_bdinfo.c>:  http://blog.csdn.net/voice_shen/article/details/88421743.  <common/cmd_bedbug.c>:4. bmp

Apache工具簡介

Jakarta項目是ASF(The Apache Software Foundation)的一部分。ASF是一個非贏利組織,她鼓勵基於開放的軟體許可下進行合作、注重實效的開發,並提供各個領域的高品質軟體,她涉及到 Http伺服器,編譯工具,類庫,開發架構,伺服器端Java技術,J2EE容器,資料庫工具,日誌工具,XML解析等等諸多領域。ASF提供的java 項目有一部分在Jakarta中,還有一些成為獨立的諸如Tomcat的項目,Jakarta項目則提供了多種多樣開源的java解決通用方案。

u-boot中的usb命令

[u-boot: v2013.04][Author: Bo Shen <voice.shen@gmail.com>]1. 使用 (協助資訊)U-Boot > usb usb - USB sub-system Usage:usb start - start (scan) USB controllerusb reset - reset (rescan) USB controllerusb stop [f] - stop USB [f]=force stopusb tree -

Ubuntu 10.04 upgrade git

[Try to build Android 4.0.4 for Atmel sama5d3x EK board, mee following issue, which need newer git]$ repo init -u git://github.com/Android4SAM/platform_sammanifest.git -b android4sam_v3.0fatal: git 1.7.2 or later requiredSo, solve this issue with

總頁數: 61357 1 .... 21260 21261 21262 21263 21264 .... 61357 Go to: 前往

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.