红联Linux门户
Linux帮助

Linux bootloader 编写方法

发布时间:2006-11-21 01:17:19来源:红联作者:Capacity
对于移植 linux 到其它开发板的人来说,编写 boot loader 是一个不可避免的过程。对于学习linux的人来讲,编写 bootloader 也是一个很有挑战性的工作。本文通过对 linux引导协议进行分析,详细阐述了如何编写一个可以在 i386 机器上引导 2.4.20内核的基本的bootloader。

1.概述

linux运行在保护模式下,但是当机器启动复位的时候却处于实模式下。所以写bootloader做的工作也是在实模式之下的。

linux 的内核有多种格式,老式的zImage和新型的bzImage。它们之间最大的差别是对于内核体积大小的限制。由于zImage内核需要放在实模式1MB 的内存之内,所以其体积受到了限制。目前采用的内核格式大多为bzImage,这种格式没有1MB内存限制。本文以下部分主要以bzImage为例进行分析.

2.bzImage格式内核的结构

bzImage 内核从前向后分为3个部分,前512字节被称为bootsect,这就是软盘引导linux时用到的bootloader,如果不从软盘引导,这部分就没有用,其中存储了一些编译时生成的内核启动选项的默认值。从512个字节开始的512*n个字节称为setup部分,这是linux内核的实模式部分,这部分在实模式下运行,主要功能是为保护模式的linux内核启动准备环境。这个部分最后会切换进入保护模式,跳转到保护模式的内核执行。最后的部分就是保护模式的内核,也就是真正意义上的linux内核。其中n的大小可以从bootsect后半部得到,详细地址可以参阅linux boot protocol。

3.引导过程概述

第一步,打开冰箱门;第二步把大象放到冰箱里……不要笑,过程就是这么简单。首先需要把linux内核的setup部分拷贝到9020H:0开始的地址,然后把保护模式内核拷贝到1MB开始的地址,然后根据Linux Boot Protocol 2.03的内容设定参数区的内容,基地址就是9000H:0,最后使用一条ljmp $0x9020,$0跳转到setup段,剩下的事情就是linux自己的了^_^,果然简单吧!

4.THE LINUX/I386 BOOT PROTOCOL

这个就是我们引导linux所使用的协议,它的位置在:Documetation/i386/boot.txt中。里面详细的写了引导linux所需要知道的一切知识,对于其它体系结构的CPU,也一定存在着类似的东东,仿照本文的方法就可以了。

5.细节一:基本引导参数

当然我们不指定任何参数linux内核也可以启动,但是这样有可能启动进入一个我们不支持的framebuffer模式,导致没有任何屏幕显示;也可能 mount了错误的根分区失败,导致No Init Found的kernel panic。所以我们必须要指定一些东西。

如果你像我一样是一个懒人,那么可以直接把bootsect拷到9000H:0的位置,使用软盘引导时它会把自己复制到这个地方的,这里面有些默认的设置,详情请见boot.txt。

首先是root的位置,这里bootsect_pos指向的是9000H:0的地址。

bootsect_pos[0x1fc] = root_minor;bootsect_pos[0x1fd] = root_major;

其中root_minor和root_major分别是root的主设备号和次设备号。

当前显示模式:

bootsect_pos[0x1fa] = 0xff;bootsect_pos[0x1fb] = 0xff;

这两个数值相当于引导参数vga=0xHHH的值,两个0xff代表文本模式。

bootsect_pos[0x210] = 0xff;

这是在设定你的 bootloader的类型,其实只要不是0就行,因为0代表的loader太旧无法引导新的内核,setup发现这个后就会停下来。按照规范你应该写成 0xff,这表示未知的boot loader,如果你的bootloader已经得到了一个官方分配的type id,那就写上自己的数值。

6.细节二:如何加载内核

如果你现在的环境是一无所有,那么必须使用bios中断或者ATA指令去读硬盘了,不过如果你手中如果有基本的DOS系统,那么就可以使用DOS的程序了。为了能够操作整个4GB的地址空间,我使用了WATCOM C写了个小程序读内核,不过你可以仿照bootsect里面的做法,在实模式中读一部分,然后进入到保护模式拷贝到1MB以上,然后再从实模式读一部分……需要注意1:9000H:0也是DOS占用的地址空间,所以读完内核后就不要返回DOS了,否则会有问题;

注意 2:一定保证是纯DOS,不要加载HIMEM或者EMM386这样的东西,它们会使上面的引导过程失败。loadlin倒是可以来者通吃几乎所有的 DOS,不过它的作者也是这方面的大牛,对DOS下的内存管理非常的熟悉。我们现在研究这些古老的东西很难找资料了,况且我们是在写 bootloader,不是DOS killer。

7.引导时的高级功能

1)initrd

initrd是启动时的一个小虚拟盘,一般用它来实现模块化的内核。引导initrd的方法主要有两个要点:
第一,把initrd读入内存,我们可以仿照大多数boot loader的方法把它放在内存的最高端;
第二,设定initrd的起始位置和长度

bootsect_pos[0x218]开始的4个字节放的是起始物理地址,bootsect_pos[0x21c]开始的4个字节放的是initrd的长度。

2)command_line支持

用command_line 你可以给内核传一些参数,自己定制内核的行为。我是这样做的,首先把command_line放在9900H:0的地址里,然后把9900H:0的物理地址存放在bootsect_pos[0x228]开始的4个字节里面。注意一定是物理地址,所以你应该放99000H这个数,然后内核就会识别你的 command_line了。

8.结束语

写本文的目的主要是为了用最少的语言和最短的时间说明bootloader的原理,真正的权威资料还是要看linux内核源码和boot.txt文件。我曾经写过一个例子loaderx,使用WATCOM C和TASM,WATCOM C是一个可以在DOS下生成能访问4GB物理地址程序的C编译器,里面也有详细的注释和文档说明。
文章评论

共有 1832 条评论

  1. 81.20.212.* 于 2007-07-27 18:52:39发表:

    regalo perro fuerteventura regalo perro fuerteventura http://www.regalos-navidad.info/news/regalo-perro-fuerteventura.php best gift store best gift store http://www.giftshop-1.info/10/best-gift-store.asp pianta sempreverde pianta sempreverde http://www.1flower-it.info/2007/1519 apple store gift card apple store gift card http://www.gift-wrap-1.info/today/1985 ontario wal mart credit card ontario wal mart credit card http://www.1-onlineloan.info/ads/ontario-wal-mart-credit-card.php simulation loi de robien simulation loi de robien http://www.loi-avocat.info/posts/1941.asp acuerdo amparo contra ley issste acuerdo amparo contra ley issste http://www.1law-lawsuit-es.info/acuerdo-amparo-contra-ley-issste.asp personalized baby gifts personalized baby gifts http://www.cesta-de-regalo.info/9/personalized-baby-gifts.html plante chalet bois castorama plante chalet bois castorama http://www.1wedding-flowers-fr.info/plante-chalet-bois-castorama.php baby basket corporate gift baby basket corporate gift http://www.1geschenkkorb.info/2007/baby-basket-corporate-gift.html

  2. 84.4.34.* 于 2007-07-27 18:40:25发表:

    sea of love robert plant sea of love robert plant http://www.flowers-online.info/9/sea-of-love-robert-plant gift boxen producer gift boxen producer http://www.de-gift-gadgets.info/1360 creative graduation gift idea creative graduation gift idea http://www.1gift-de.info/6/1451.asp finance economie immobilier conseil juridique finance economie immobilier conseil juridique http://www.lawfr.info/article/finance-economie-immobilier-conseil-juridique attorney diego injury personal san attorney diego injury personal san http://www.1law-attorney-de.info/info/attorney-diego-injury-personal-san.html order flower online order flower online http://www.123achatfleurs.info/1865 wholesale promotional gift wholesale promotional gift http://www.giftshop1.info/post/1975 giudice di pace cagliari giudice di pace cagliari http://www.1law-court-ita.info/articles/giudice-di-pace-cagliari.asp despacho de abogado de madrid despacho de abogado de madrid http://www.1law-lawyer-es.info/news/despacho-de-abogado-de-madrid.asp personal injury lawsuit loan personal injury lawsuit loan http://www.1-ley-es.info/8/personal-injury-lawsuit-loan.asp

  3. 74.185.38.* 于 2007-07-27 18:37:15发表:

    flower name list flower name list http://www.flower12.info/7/flower-name-list.php argent gratuit gagner largent cadeaux gratuit argent gratuit gagner largent cadeaux gratuit http://www.cadeau-anniversaire-fr.info/9/argent-gratuit-gagner-largent-cadeaux-gratuit.asp comprar c 293 293 regalo comprar c 293 293 regalo http://www.1-regalos-navidad.info/2007/comprar-c-293-293-regalo.html colombia plants colombia plants http://www.wedding-flowers-de.info/1001 cool gadgets cool gadgets http://www.german-baby-gift.info/pdf/1134.html geschenk 50 geburtstag selbermachen geschenk 50 geburtstag selbermachen http://www.de-baby-gift.info dokument einstellung ronny temporary internetfiles dokument einstellung ronny temporary internetfiles http://www.gesetz-rechtsanwalt.info/tag/1571.asp cheat code for x box matrix cheat code for x box matrix http://www.gift12.info/docs/cheat-code-for-x-box-matrix.php avocat specialiste droit famille bordeaux avocat specialiste droit famille bordeaux http://www.loi-mandataire-1.info/1437.html nota corte malaga nota corte malaga http://www.ley-justicia-1.info/nota-corte-malaga.php

  4. 86.132.83.* 于 2007-07-27 18:16:07发表:

    porte document publicitaire porte document publicitaire http://www.frloi.info/10/porte-document-publicitaire.php connecticut mesothelioma attorney connecticut mesothelioma attorney http://www.law-justice-fr.info/1251.asp new york construction accident lawyer new york construction accident lawyer http://www.law-de.info/1286.php antigua ley issste antigua ley issste http://www.spanish-law-court.info/online/1604.html etiquette autocollantes cadeaux gratuit etiquette autocollantes cadeaux gratuit http://www.1-cadeaux-noel.info/1981 regalo giorno san valentino regalo giorno san valentino http://www.regalo-natale.info/posts/regalo-giorno-san-valentino.asp ucla law school alumni ucla law school alumni http://www.1law-germany.info/docs/1385 applebees gift certificate applebees gift certificate http://www.cesta-de-regalo.info/9/applebees-gift-certificate.html corte dei conti sicilia corte dei conti sicilia http://www.1legge-giudice-it.info/docs/corte-dei-conti-sicilia.asp corte conti it corte conti it http://www.ita-legge-corte.info/comment/1484.html

  5. 82.66.197.* 于 2007-07-27 16:48:56发表:

    connecticut real estate law connecticut real estate law http://www.1gesetz-gericht.info/1295.asp ombrellone giardino brescia ombrellone giardino brescia http://www.1-it-flower.info/1485.html document viewer document viewer http://www.fr-law.info/tools/1077 plante aquarium a discus plante aquarium a discus http://www.1flowers-online-fr.info/article/1115.php catastrophic health insurance quote catastrophic health insurance quote http://www.healthinsurance1.info/1/catastrophic-health-insurance-quote.php buy artificial flower buy artificial flower http://www.fleurs-mariage-fr.info/2007/buy-artificial-flower.asp aquarium in plant aquarium in plant http://www.send-flowers1.info/1/1692.asp hanging onion basket hanging onion basket http://www.1giftbaskets.info/1034.php consiglio regalo laurea fidanzata consiglio regalo laurea fidanzata http://www.it-gift-baskets.info/online/consiglio-regalo-laurea-fidanzata.html birthday gift idea birthday gift idea http://www.1ideas-para-regalo.info/pdf/birthday-gift-idea.html

  6. 24.32.203.* 于 2007-07-27 11:37:52发表:

    traveler property casualty insurance traveler property casualty insurance http://www.homeinsurance1.info/online/1651.asp arizona wild flower arizona wild flower http://www.12weddingflowers.info/1785.asp dokumente archivierung dokumente archivierung http://www.1law-germany.info/dokumente-archivierung.asp new jersey securities fraud attorney new jersey securities fraud attorney http://www.1law-process.info/book/new-jersey-securities-fraud-attorney ordering flowers online ordering flowers online http://www.1rose-blume.info/1285.asp west virginia mesothelioma lawyer west virginia mesothelioma lawyer http://www.1legge-giudice-it.info/docs/west-virginia-mesothelioma-lawyer.asp gadgets espanol gadgets espanol http://www.1-es-gifts.info/7/1378.php chaya planta medicinal chaya planta medicinal http://www.flor-artificial.info/forum/chaya-planta-medicinal forme juridique entreprise forme juridique entreprise http://www.loi-proces-fr.info/info/1920 bouquet mariee orleans bouquet mariee orleans http://www.1-fr-flower.info/forum/1507

  7. 71.221.69.* 于 2007-07-27 01:46:29发表:

    california maternity leave law california maternity leave law http://www.1law-advocat.info/tools/1340.asp divorce law in va divorce law in va http://www.ley-corte-1.info/divorce-law-in-va.html flower peru send flower peru send http://www.1-flower.info/docs/flower-peru-send.html massachusetts personal injury lawyer massachusetts personal injury lawyer http://www.es-ley-abogado.info/tag/1306.html medical malpractice attorney utah medical malpractice attorney utah http://www.es-law-attorney.info/2007/1686.html mejor abogado penalista alicante mejor abogado penalista alicante http://www.spanish-law-lawyer.info/files/mejor-abogado-penalista-alicante complete handbook house plant complete handbook house plant http://www.1-order-flowers.info/articles/complete-handbook-house-plant over 1000 gift baskets available over 1000 gift baskets available http://www.1regalo-natale.info/2007/1824.php flower girl gifts flower girl gifts http://www.fr-baby-gift.info/4/1727 fleurs tropicale photo libre fleurs tropicale photo libre http://www.fr-silk-flowers.info/latest/1173.html

  8. 203.121.69.* 于 2007-07-26 02:04:37发表:

    Thanks! Best free mp3 music downloads site: :
    free music download sites = free music download sites = download free music = free music download sites = free music downloading = free country music downloads = free ipod music downloads = free ipod music downloads sites = free music for ipod =
    http://www.fixgrout.com/cgi/ music download :: http://musicdownloads4free.angelfire.com/free-music.html Free Music Downloads :: http://bridgenews.org/portal_memberdata/portraits/fmusca free music ipods :: http://idisk.mac.com/fmp3musicdownloads/Public/free-music.html download music for free :: http://musicdownloadsmp3.tripod.com music :: http://www.viktorschreckengost.org/portal_memberdata/portraits/bergds classical music downloads :: http://idisk.mac.com/fmp3musicdownloads/Public/music.html free download music :: http://musicdownloadsmp3.tripod.com/music_downloads.html limewire :: http://www.fixgrout.com/cgi/ mp3 downloads :: http://noticeboard.calimera.org/calimera/portal_memberdata/portraits/freemusic free ipod music downloads sites :: http://nmstandards.org/portal_memberdata/portraits/vsemoe download music for free ::
    free mp3 .. download free music .. music .. free country music downloads .. how to download music .. music download .. free music to download ..

  9. 203.121.69.* 于 2007-07-22 07:53:42发表:

    Great boys :
    download music free = music download free = mp3 downloads = myspace music = free music = free music downloading = free legal ipod music = free mp3 files downloads = downloading song =
    http://www.freewebs.com/1fmusic/music-downloads.html free music downloads :: http://www.tonyshoes.com/albums/musicdownloads/?mp3music=12 music download free :: http://www.freewebs.com/1fmusic/limewire.html free music downloads :: http://www.tonyshoes.com/albums/musicdownloads/?mp3music=95 myspace music :: http://idisk.mac.com/fmp3musicdownloads/Public/free-music.html free music :: http://idisk.mac.com/fmp3musicdownloads/Public/music.html free music :: http://www.freewebs.com/1fmusic/iPod-music.html free ipod music downloads sites :: http://idisk.mac.com/fmp3musicdownloads/Public/free-mp3-files-downloads.html free mp3 files downloads :: http://www.tonyshoes.com/albums/musicdownloads/?mp3music=84 downloading song :: http://idisk.mac.com/fmp3musicdownloads/Public/index.html mp3 downloads :: http://www.tonyshoes.com/albums/musicdownloads/?mp3music=117 free music downloading programs ::
    free music .. music download free .. mp3 downloads .. myspace music .. free music .. free music download .. free ipod downloads ..