青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

posts - 54, comments - 32, trackbacks - 0, articles - 0

首先正常安裝這個驅動
Using the Sysgen Capture Tool 宋氏電電流電壓表

  1. From a command prompt, in your OS design directory, create two subdirectories for the driver. One is for a library corresponding to your driver and the other is for your driver's binary file, which can be a DLL or EXE. (建立src文件夾的copy,改名為DLL,一個生成lib,另一個生成DLL,ep93xx\src\Drivers下面建立目錄dm9isa,然后在下面建立子目錄LIBDLL

For example, to customize Com16550.dll, create a subdirectory named %_TARGETPLATROOT%\Drivers\Com16550\Src for the library and %_TARGETPLATROOT%\Drivers\Com16550\DLL for the binary file.

Note   If you were customizing an executable such as Etcha.exe, then you might create %_TARGETPLATROOT%\Apps\Etcha\Src and %_TARGETPLATROOT%\Apps\Etcha\EXE.

  1. Verify that the library name for your driver module is different from the name for your driver's binary file. TARGETNAMEdm9isa要更名為dm9isa_lib

In this example, Com16550.dll is built by linking Com16550_lib.lib. Most DLL Sysgen targets use the *_lib.lib naming convention because if you do not differentiate the library file and binary file names, the driver's import library has the same name as the static library containing its code. This may result in build problems that are difficult to diagnose accurately.

  1. Copy the Public directory that contains code for the module that you want to build into the Src directory that you created. In this example, you would copy the files from Public\Common\OAK\Drivers\Serial\Com16550\*.*. (COPY DM9ISA的源碼到ep93xx\src\Drivers\dm9isa\LIBep93xx\src\Drivers\dm9isa\DLL)
  2. Navigate to the %_TARGETPLATROOT%\Drivers\Com16550\Src directory. Use a text editor to open the Sources file, and then add the following line.
RELEASETYPE=PLATFORM(SOURCES文件中增加RELEASETYPE=PLATFORM,這樣BUILD之后的LIB文件就會生成到PLATFORM\EP93XX\LIB下面
不然原本會生成到PROJECT目錄的\OAK\LIB下面下面)

If a RELEASETYPE line already exists in the Sources file, then change its value to PLATFORM. This tells the build system that output files should be placed in your OS design's Lib or target directories.

  1. Verify that the following line appears in the Sources file, and then save the file and close the text editor.
WINCEOEM=1(Sources文件中添加WINCEOEM=1,去掉WINCETARGETFILE0=$(_COMMONOAKROOT)\lib\$(_CPUINDPATH)\dm9isa.def)

This tells the build system to include portions of header files that are only available to OEMs who are building run-time images.

  1. Build the library in %_TARGETPLATROOT%\Drivers\Com16550\Src. If there are any errors, resolve them before proceeding. A successful build creates and places the file Com16550_lib.lib in the appropriate subdirectory of %_TARGETPLATROOT%\lib. BUILD –C生成LIBPLATFORM\EP93XX\LIB\dm9isa_lib.lib
  2. Navigate to the directory for your driver's binary file. For example, navigate to %_TARGETPLATROOT%\Drivers\Com16550\DLL. (切換目錄到ep93xx\src\Drivers\dm9isa\DLL)
  3. Run Sysgen_capture with the usual Sysgen parameters. For example, type the following line to execute Sysgen_capture with Com16550 as a target.
Sysgen_capture com16550(執行SYSGEN_CAPTURE DM9ISA,生成souces.DM9ISA系統會去抓系統MAKEFILE.DEF中模塊的一些信息

This creates one or more files, one of which is a Sources file with the name of the driver as the file extension. For example, a file created using Com16550 as a target would be named Sources.com16550. The Sysgen_capture.bat utility creates one such file for each .dll or .exe target created while running your Sysgen command.

  1. Rename the sources file for your driver as Sources. For example, remove the extension .com16550 from the file name Sources.com16550. (souces.DM9ISA更名為sources)
  2. Copy one of the selected module's sample Makefiles into your Src directory. At a minimum, you need a Sources file and a Makefile to run Build.exe. (LIB中的Makefiles拷貝到DLL)

For example, copy the Makefile located in %_TARGETPLATROOT%\Drivers\Com16550\Src into %_TARGETPLATROOT%\Drivers\Com16550\DLL.

  1. Run Build.exe. This creates the same binary as the standard Sysgen command, and places it in your OS design's target directory, which is a subdirectory of %_TARGETPLATROOT%\target. Examine Build.log to determine where the binary was created. (在ep93xx\src\Drivers\dm9isa\DLL中,BUILD -C

Note   This version of the driver uses the standard version of Com16550_lib.lib, not the version that you created in %_TARGETPLATROOT%\Drivers\Com16550\src.

  1. In %_TARGETPLATROOT%\Drivers\Com16550\Src, open the sources file in a text editor. Remove the TARGETLIBS, or SOURCELIBS, entry for Com16550_lib.lib, and move it to SOURCELIBS, changing the path as appropriate. You may need to replace occurrences of %_PUBLICROOT%\common\oak with %_TARGETPLATROOT%. ($(_PUBLICROOT)\common\oak\lib\$(_CPUINDPATH)\dm9isa.lib \改為$(_TARGETPLATROOT)\lib\$(_CPUINDPATH)\dm9isa_lib.lib,即鏈接本地的LIB)
  2. Navigate to the directory for your driver's binary file, for example, %_TARGETPLATROOT%\Drivers\Com16550\DLL, and then run Build.exe. Build.exe builds the target binary using your version of Com16550_lib.lib, which you can confirm by examining Build.log. (鏈接你自己生成的LIB之后(ep93xx\src\drivers\lib\ dm9isa_lib.lib,DM9ISADLL編譯,完全本地化)

Note   In order to delete all the object files, you may need to run Build.exe with the –c parameter.

  1. In the %_TARGETPLATROOT%\Drivers\Com16550 directory, create a Dirs file that lists, in order, the Src and DLL, or EXE, directories. This enables you to build your modified version of %_TARGETPLATROOT%\Drivers\Com16550\Src and link an executable with one build command. (在ep93xx\src\drivers\dm9isa目錄下創建dirs文件,添加LIBDLL,注意順序,先編譯LIB,然后生成DLL
  2. Run Build.exe with the –c option in the %_PROJECTROOT%\CustomDriver directory and confirm that the contents of both the Src and DLL, or EXE, subdirectories are built, and that the driver links successfully. (ep93xx\src\drivers\dm9isa運行BUILD –C即可在本地BSP編譯鏈接,生成DM9ISA.DLL文件,不用SYSGEN整個系統,且避免影響其他平臺。)
青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            亚洲男人的天堂在线| 美女图片一区二区| 91久久精品美女高潮| 久久综合九色综合久99| …久久精品99久久香蕉国产| 美女主播一区| 欧美国产1区2区| 亚洲欧美日本在线| 亚洲综合电影| 亚洲电影自拍| 9色porny自拍视频一区二区| 国产精品羞羞答答xxdd| 久久久噜噜噜久久人人看| 另类亚洲自拍| 亚洲欧美日本国产专区一区| 欧美在线一区二区| 91久久精品美女高潮| 一本色道久久| 激情成人亚洲| 99国产麻豆精品| 国产亚洲欧美日韩美女| 欧美国产一区二区| 国产精品青草久久久久福利99| 久久久久久有精品国产| 欧美激情一区二区在线| 久久gogo国模啪啪人体图| 噜噜噜躁狠狠躁狠狠精品视频| 中文在线一区| 久久久水蜜桃| 亚洲男女自偷自拍图片另类| 蜜臀久久99精品久久久画质超高清| 一本大道久久a久久精品综合| 亚洲欧美激情诱惑| 一本大道久久a久久综合婷婷| 久久国产精品亚洲77777| 一本久道综合久久精品| 久久久久久久久久看片| 亚洲影院在线| 欧美激情久久久久| 欧美国产一区视频在线观看 | 久久久久久穴| 亚洲网站视频| 免费看的黄色欧美网站| 欧美一区二区视频在线观看| 欧美精品午夜视频| 久久中文字幕一区二区三区| 国产精品日韩久久久久| 日韩午夜免费视频| 日韩亚洲精品视频| 免费成人高清| 你懂的亚洲视频| 国产一区激情| 欧美亚洲网站| 性做久久久久久久久| 欧美日韩视频一区二区| 亚洲国产欧美日韩精品| 狠狠久久亚洲欧美专区| 亚洲欧美国产高清| 午夜日韩av| 国产精品视频yy9299一区| 在线性视频日韩欧美| 亚洲最黄网站| 欧美日韩国产综合视频在线观看中文 | 亚洲经典自拍| 亚洲激情自拍| 男女激情久久| 亚洲第一二三四五区| 亚洲精品美女在线观看播放| 欧美成人精品不卡视频在线观看 | 欧美大成色www永久网站婷| 国产亚洲在线| 性久久久久久久久| 久久看片网站| 怡红院精品视频| 久久精品一区二区三区四区 | 91久久综合亚洲鲁鲁五月天| 亚洲一区二区在线观看视频| 亚洲免费网址| 国产亚洲一区二区三区在线播放| 亚洲欧美日韩国产精品 | 亚洲国产成人精品女人久久久 | 欧美激情女人20p| 日韩手机在线导航| 亚洲午夜精品一区二区| 欧美午夜免费电影| 午夜精品电影| 欧美va亚洲va香蕉在线| 亚洲免费av电影| 欧美视频亚洲视频| 欧美亚洲一区三区| 欧美激情第二页| 中文久久精品| 国产精品国产a级| 久久久精品一区| 国产欧美 在线欧美| 亚洲国产高清一区| 亚洲欧美成人网| 伊人久久亚洲美女图片| 欧美第十八页| 性感少妇一区| 亚洲欧洲一区二区在线播放| 欧美一区二区三区播放老司机| 一区三区视频| 欧美日韩色婷婷| 久久国产日韩| 亚洲深爱激情| 欧美激情一区在线| 欧美在线视频网站| 99在线精品视频| 精品动漫3d一区二区三区免费| 欧美女主播在线| 久久精品亚洲精品| 亚洲一区3d动漫同人无遮挡| 嫩草成人www欧美| 久久福利毛片| 亚洲一区二区成人| 最新日韩精品| 精品av久久久久电影| 国产精品久久久亚洲一区 | 午夜性色一区二区三区免费视频| 亚洲黄色高清| 欧美激情第3页| 蜜臀av一级做a爰片久久| 欧美在线免费观看视频| 一区二区三区你懂的| 亚洲国产另类精品专区| 黄色一区二区在线| 国产日韩欧美中文在线播放| 欧美日韩亚洲免费| 欧美黄色片免费观看| 久久亚洲精品一区| 久久精品一区二区三区中文字幕 | 欧美成人一区二免费视频软件| 欧美在线3区| 欧美一区二区免费| 性娇小13――14欧美| 亚洲一级特黄| 亚洲在线视频免费观看| 亚洲一级片在线看| 亚洲影院在线| 欧美在线欧美在线| 亚洲欧美在线一区| 亚洲欧美日韩国产精品| 亚洲欧美激情诱惑| 羞羞答答国产精品www一本 | 91久久亚洲| 亚洲国产一区二区三区a毛片| 欲香欲色天天天综合和网| 一区免费在线| 亚洲人体一区| 亚洲午夜电影网| 亚洲欧美日产图| 久久国产精品99精品国产| 久久久欧美精品sm网站| 麻豆亚洲精品| 亚洲人成在线播放| 亚洲精品日韩在线| 亚洲一级片在线观看| 欧美一区二区三区在线免费观看| 久久国产精品一区二区| 免费成人av在线| 欧美深夜影院| 国模大胆一区二区三区| 亚洲激情电影在线| 亚洲手机在线| 久久艳片www.17c.com| 欧美成人一区二区三区在线观看| 亚洲国产精品v| 亚洲一区精彩视频| 欧美福利电影在线观看| 国产精品久久久久aaaa樱花| 欧美人与性动交cc0o| 欧美性事在线| 在线激情影院一区| 一区二区三区视频在线看| 亚洲欧美欧美一区二区三区| 久久久久高清| 日韩网站免费观看| 久久精品99久久香蕉国产色戒| 欧美激情一二区| 国产午夜精品在线| aa级大片欧美| 老司机精品导航| 亚洲婷婷国产精品电影人久久| 久久国产精品亚洲va麻豆| 欧美日韩精品三区| 伊人色综合久久天天五月婷| 亚洲无人区一区| 亚洲大胆视频| 久久久久久久综合日本| 国产精品扒开腿爽爽爽视频| 亚洲国产精品免费| 欧美一站二站| 一区二区精品在线| 免费成人性网站| 国产曰批免费观看久久久| 中文久久精品| 亚洲三级网站| 欧美成人激情视频| 亚洲第一色在线|