[转载]Linux 环境下编译 0.11版本内核 kernel

最近在看《linux内 核0.11完全注释》一书,由于书中涉及汇编语言的地方众多,本人在大学时汇编语言学得一塌糊涂,所以实在看不下去了,头都大了只好匆匆看了个头尾(前面 几章和最后一章)。看来即使有《九阴真经》这样的武功秘籍,内功不够也是修炼不出来神马来的。于是索性下了个0.11版本的kernel下来尝试编译一 把。

linux-0.11.tar.gz 下载地址:

下面开始工作:

1、 tar xvfz linux-0.11.tar.gz

2、 cd linux-0.11

3、 make

make: as86: Command not finded

make: ***

出错原因:as86 汇编器未安装

解决办法:

yum install dev86* (请务必保证网络畅通,如果使用Debian Linux系统命令改为 apt-get install dev86*)

下载dev86-0.16.3-8.i386.rpm安装 下载地址 http://www.oldlinux.org/Linux.old/study/tools/

4、 make

gas -c -o boot/head.o boot/head.s

make: gas: Command not finded

make: *** [boot/head.o] Error 127

出错原因:gas 汇编器未安装

解决办法:

yum install binutils* (请确保网络正常)

下载binutils-2.20.tar.gz安装 下载地址http://ftp.gnu.org/gnu/binutils/

tar xvfz binutils-2.20.tar.gz

./configure

make

make install

确认 Gnu assembler 已经安装

which as

/usr/local/bin/as

5、 make

gas -c -o boot/head.o boot/head.s

make: gas: Command not found

make: *** [boot/head.o] Error 127

出错原因:gas、gld 的名称已经过时,现在GNU assembler的名称是 as

解决办法:

修改主 Makefile 文件

将 AS =gas 修改为 AS =as

将 LD =gld 修改为 LD =ld

6、make

as -c -o boot/head.o boot/head.s

as: unrecognized option ‘-c‘

make: *** [boot/head.o] Error 1

出错原因:as 语法和1991年的时候有了一些变化

解决办法:

修改 Makefile 文件

将 $(AS) -c -o $*.o $< 修改为 $(AS) -o $*.o $<

7、make

as -o boot/head.o boot/head.s

boot/head.s: Assembler messages:

boot/head.s:231: Error: alignment not a power of 2

make: *** [boot/head.o] Error 1

出错原因:.align 2 是汇编语言指示符,其含义是指存储边界对齐调整;

“2”表示把随后的代码或数据的偏移位置调整到地址值最后2比特位为零的位置(2^2),即按4字节对齐内存地址。

不过现在GNU as直接是写出对齐的值而非2的次方值了。

.align 2 应该改为 .align 4

.align 3 应该改为 .align 8

解决办法:

修改 boot/head.s 文件

将 .align 2 应该改为 .align 4

.align 3 应该改为 .align 8

8、make

cc1: error: unrecognized command line option "-mstring-insns"

cc1: error: unrecognized command line option "-fcombine-regs"

make: *** [init/main.o] Error 1

解决办法:

修改 Makefile 文件

将 -fcombine-regs -mstring-insns 删除或者注释掉

9、make

In file include from init/main.c:9:

include/unistd.h:207: warning: function return types not compatible due to ‘volatile‘

include/unistd.h:208: warning: function return types not compatible due to ‘volatile‘

init/main.c:24: error: static declaration of ‘fork‘ follows non-static declaration

init/main.c:26: error: static declaration of ‘pause‘ follows non-static declaration

include/unistd.h:224: note: previous declaration of ‘pause‘ was here

init/main.c:30: error: static declaration of ‘sync‘ follows non-static declaration

include/unistd.h:235: note: previous declaration of ‘sync‘ was here

init/main.c:108: warning: return type of ‘main‘ is not ‘int‘

make: *** [init/main.o] Error 1

解决办法:

修改 init/main.c 文件

将 static inline _syscall0(int,fork) 修改为 inline _syscall0(int,fork)

static inline _syscall0(int,pause) 修改为 inline _syscall0(int,pause)

static inline _syscall1(int,setup,void *,BIOS) 修改为 inline _syscall1(int,setup,void *,BIOS)

static inline _syscall0(int,sync) 修改为 inline _syscall0(int,sync)

10、make

(cd kernel; make)

make[1]: Entering directory ‘***/linux-0.11/kernel‘

gcc -Wall -O -fstrength-reduce -fomit-frame-pointer -fcombine-regs -finline-functions -mstring-insns -nostdinc -I../include \

-c -o sched.o sched.c

cc1: error: unrecognized command line option "-mstring-insns"

cc1: error: unrecognized command line option "-fcombine-regs"

make[1]: *** [sched.o] Error 1

make[1]: Leaving directiory ‘***/linux-0.11/kernel‘

make: *** [kernel/kernel.o] Error 2

解决办法:

修改 kernel目录下 Makefile 文件

将 -fcombine-regs -mstring-insns 删除或者注释掉

11、make

gas -c -o system_call.o system_call.s

make[1]: gas: Command not found

make[1]: *** [system_call.o] Error 127

make[1]: Leaving directory ‘***/linux-0.11/kernel‘

make: *** [kernel/kernel.o] Error 2

解决办法:

修改 kernel目录下 Makefile 文件

将 AS =gas 修改为 AS =as

将 LD =gld 修改为 LD =ld

将 $(AS) -c -o $*.o $< 修改为 $(AS) -o $*.o $<

12、make

fork.c:In function ‘copy_process‘:

fork.c:121: warning: suggest parentheses around assignment used as truth value

fork.c:In function ‘copy_mem‘:

fork.c:54: error: can‘t find a register in class ‘DREG‘ while reloading ‘asm‘

fork.c:55: error: can‘t find a register in class ‘DREG‘ while reloading ‘asm‘

fork.c:46: error: ‘asm‘ operand has impossible constraints

fork.c:47: error: ‘asm‘ operand has impossible constraints

fork.c:54: error: ‘asm‘ operand has impossible constraints

fork.c:55: error: ‘asm‘ operand has impossible constraints

make[1]: *** [fork.o] Error 1

make[1]: Leaving directory ‘***/linux-0.11/kernel‘

make: *** [kernel/kernel.o] Error 2

在 kernel/fork.c 第 54 行:

可以看到这样的调用 set_base(p->ldt[1],new_code_base);

在 include/linux/sched.h 第 188 —— 211 行:

可以看到 set_base 的实现

#define set_base(ldt,base) _set_base( ((char *)&(ldt)) , base )

#define _set_base(addr,base) \

__asm__("movw %%dx,%0\n\t" \

"rorl $16,%%edx\n\t" \

"movb %%dl,%1\n\t" \

"movb %%dh,%2" \

::"m" (*((addr)+2)), \

"m" (*((addr)+4)), \

"m" (*((addr)+7)), \

"d" (base) \

:"dx")

因 为这里涉及到汇编的知识,哥卡在这里一直没解决并且郁闷了好久,最后只好看回《linux内核0.11完全注释》一书。赵炯博士在 http://www.oldlinux.org/Linux.old/kernel/0.1x/ 这里提供了修改 linux-0.11-060618-gcc4.tar.gz 好的 0.11版本的内核。

于是这个时候比较工具 Beyond Compare 就派上用场了。

将 #define _set_base(addr,base) \ 修改为 #define _set_base(addr,base) \

__asm__("movw %%dx,%0\n\t" \ __asm__("push %%edx\n\t" \

"rorl $16,%%edx\n\t" \ "movw %%dx,%0\n\t" \

"movb %%dl,%1\n\t" \ "rorl $16,%%edx\n\t" \

"movb %%dh,%2" \ "movb %%dl,%1\n\t" \

::"m" (*((addr)+2)), \ "movb %%dh,%2\n\t" \

"m" (*((addr)+4)), \ "pop %%edx" \

"m" (*((addr)+7)), \ ::"m" (*((addr)+2)), \

"d" (base) \ "m" (*((addr)+4)), \

:"dx") "m" (*((addr)+7)), \

"d" (base) )

将 #define switch_to(n) {\

struct {long a,b;} __tmp; \

__asm__("cmpl %%ecx,_current\n\t" \

"je 1f\n\t" \

"movw %%dx,%1\n\t" \

"xchgl %%ecx,_current\n\t" \

"ljmp %0\n\t" \ ------------------------------这里修改为 "ljmp *%0\n\t" \

"cmpl %%ecx,_last_task_used_math\n\t" \

"jne 1f\n\t" \

"clts\n" \

"1:" \

::"m" (*&__tmp.a),"m" (*&__tmp.b), \

"d" (_TSS(n)),"c" ((long) task[n])); \

}

将 #define _get_base(addr) ({\ 修改为 static inline unsigned long _get_base(char * addr)

unsigned long __base; \ {

__asm__("movb %3,%%dh\n\t" \ unsigned long __base;

movb %2,%%dl\n\t" \ __asm__("movb %3,%%dh\n\t" \

shll $16,%%edx\n\t" \ "movb %2,%%dl\n\t" \

movw %1,%%dx" \ "shll $16,%%edx\n\t" \

"=d" (__base) \ "movw %1,%%dx" \

"m" (*((addr)+2)), \ :"=&d" (__base) \

"m" (*((addr)+4)), \ :"m" (*((addr)+2)), \

"m" (*((addr)+7))); \ "m" (*((addr)+4)), \

__base;}) "m" (*((addr)+7)));

return __base;

}

注意:

由于GNU as汇编器不断进化的原因,需要将 *.s 文件中

类似

.globl _idt,_gdt,_pg_dir,_tmp_floppy_area

修改为

.globl idt,gdt,pg_dir,tmp_floppy_area

不然虽然编译通过,但是连接的时候将出现类似这样的错误

boot/head.o: In function ‘setup_idt‘:

(.text+0x87): undefined reference to ‘_idt‘

boot/head.o: In function ‘idt_descr‘:

(.text+0x54ac): undefined reference to ‘_idt‘

kernel/kernel.o: In function ‘sched_init‘:

(.text+0x37c): undefined reference to ‘_idt‘

GCC中基本的内联汇编:__asm____volatile__("InstructionList");

__asm__(

"movl $1,%eax\r\t"

"xor %ebx,%ebx\r\t"

"int $0x80"

);

带有C/C++表达式的内联汇编:

__asm__ __volatile__("InstructionList"

:Output

:Input

:Clobber/Modify);

这4个部分都不是必须的,任何一个部分都可以为空,其规则为:

1、如果Clobber/Modify 为空,则其前面的冒号(:)必须省略。

2、如果Output,Input,Clobber/Modify都为空,Output,Input之前的冒号(:)既可以省略,也可以不省略。

3、如果Input,Clobber/Modify为空,但Output不为空,Input前的冒号(:)既可以省略,也可以不省略。

4、如果后面的部分不为空,而前面的部分为空,则前面的冒号(:)都必须保留,否则无法说明不为空的部分究竟是第几部分。

每一个Input和Output表达式都必须指定自己的操作约束Operation Constraint,这里将讨论在80386平台上所可能使用的操作约束。

当前的输入或输出需要借助一个寄存器时,需要为其指定一个寄存器约束,可以直接指定一个寄存器的名字。

常用的寄存器约束的缩写

约束 意义

r 表示使用一个通用寄存器,由 GCC 在%eax/%ax/%al,%ebx/%bx/%bl,%ecx/%cx/%cl,%edx/%dx/%dl中选取一个GCC认为合适的。

g 表示使用任意一个寄存器,由GCC在所有的可以使用的寄存器中选取一个GCC认为合适的。

q 表示使用一个通用寄存器,和约束r的意义相同。

a 表示使用%eax/%ax/%al

b 表示使用%ebx/%bx/%bl

c 表示使用%ecx/%cx/%cl

d 表示使用%edx/%dx/%dl

D 表示使用%edi/%di

S 表示使用%esi/%si

f 表示使用浮点寄存器

t 表示使用第一个浮点寄存器

u 表示使用第二个浮点寄存器

如果一个Input/Output 操作表达式的C/C++表达式表现为一个内存地址,不想借助于任何寄存器,则可以使用内存约束。比如:

__asm__("lidt%0":"=m"(__idt_addr));

__asm__("lidt%0"::"m"(__idt_addr));

修饰符 输入/输出 意义

= O 表示此Output操作表达式是Write-Only的。

+ O 表示此Output操作表达式是Read-Write的。

& O 表示此Output操作表达式独占为其指定的寄存器。

% I 表示此Input 操作表达式中的C/C++表达式可以和下一 个Input操作表达式中的C/C++表达式互换

--------------------------------------------------------------------------------------------------------------------------------------------------------------

13、make

In file included from stat.c:13:

../include/asm/segment.h: Assembler messages:

../include/asm/segment.h:27: Error: bad register name ‘%sil‘

make[1]: *** [stat.o] Error 1

make[1]: Leaving directory ‘***/linux-0.11/fs‘

make: *** [fs/fs.o] Error 2

出错原因:

fs 目录下的 Makefile 中编译选项使用了 -O 优化选项导致寄存器错误

解决方法:

将fs目录下的Makefile 文件中的

CFLAGS =-Wall -O -fstrength-reduce -fomit-frame-pointer \

修改为

CFLAGS =-Wall -fstrength-reduce -fomit-frame-pointer \

14、make

tools/build.c: In function ‘main‘:

tools/build.c:75: warning: implicit declaration of function ‘MAJOR‘

tools/build.c:76: warning: implicit declaration of function ‘MINOR‘

tmp/ccsMKTAS.o: In function ‘main‘:

build.c:(.text+0xe1): undefined reference to ‘MAJOR‘

build.c:(.text+0xf7): undefined reference to ‘MINOR‘

collect2: ld returned 1 exit status

出错原因:‘MAJOR‘ 和 ‘MINOR‘ 未定义

解决办法:

我们可以在 include/linux/fs.h 文件中找到

#define MAJOR(a) (((unsigned)(a))>>8)

#define MINOR(a) ((a)&0xff)

而在 tools/build.c 中也有包含 #include <linux/fs.h>

那么再看第一层目录中的主 Makefile 文件

tools/build: tools/build.c

$(CC) $(CFLAGS) \

-o tools/build tools/build.c

好象确实没有引用头文件

简单的添加 -Iinclude

重新编译后出现一堆报标准C库头文件的错误

再添加 -nostdinc

又报 stderr fprintf 之类的错误

没折,只好将

#define MAJOR(a) (((unsigned)(a))>>8)

#define MINOR(a) ((a)&0xff)

添加到 tools/build.c 文件中,然后删除 #include <linux/fs.h>

15、make

make[1]: Leaving directory ‘***/linux-0.11/lib‘

ld -s -x -M boot/head.o init/main.o \

kernel/kernel.o mm/mm.o fs/fs.o \

kernel/blk_drv/blk_drv.a kernel/chr_drv/chr_drv.a \

kernel/math/math.a \

lib/lib.a \

-o tools/system > System.map

ld: warning: cannot find entry symbol _start; defaulting to 08048a0

gcc -Wall -O -fstrength-reduce -fomit-frame-pointer \

-o tools/build tools/build.c

tools/build boot/bootsect boot/setup tools/system /dev/hd6 > Image

/dev/hd6: No such file or directory

Couldn‘t stat root device.

make: *** [Image] Error 1

解决办法:

将第一层主 Makefile 文件中的

tools/system: boot/head.o init/main.o \

$(ARCHIVES) $(DRIVERS) $(MATH) $(LIBS)

$(LD) $(LDFLAGS) boot/head.o init/main.o \

$(ARCHIVES) \

$(DRIVERS) \

$(MATH) \

$(LIBS) \

-o tools/system > System.map

修改为

tools/system: boot/head.o init/main.o \

$(ARCHIVES) $(DRIVERS) $(MATH) $(LIBS)

$(LD) $(LDFLAGS) boot/head.o init/main.o \

$(ARCHIVES) \

$(DRIVERS) \

$(MATH) \

$(LIBS) \

-o tools/system

nm tools/system | grep -v ‘\(compiled\)\|\(\.o$$\)\|\( [aU] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)‘| sort > System.map

nm命令将目标文件中的各种符号列出来。

ROOT_DEV=/dev/hd6 修改为 ROOT_DEV=

16、make

/DISCARD/

*(.note.GNU-stack)

*(.gnu_debuglink)

*(.gnu.lto_*)

OUTPUT(tools/system elf32-i386)

nm tools/system | grep -v ‘\(compiled\)\|\(\.o$$\)\|\( [aU] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)‘| sort > System.map

nm: tools/system: no symbols

gcc -Wall -O -fstrength-reduce -fomit-frame-pointer \

-o tools/build tools/build.c

tools/build boot/bootsect boot/setup tools/system > Image

Root device is (3, 6)

Boot sector 512 bytes.

Setup is 312 bytes.

Non-Gcc header of ‘system‘

make: *** [Image] Error 1

解决办法:

将第一层主 Makefile 文件中的

LDFLAGS =-s -x -M

修改为

LDFLAGS =-m elf_i386 -Ttext 0 -e startup_32

Image: boot/bootsect boot/setup tools/system tools/build

tools/build boot/bootsect boot/setup tools/system $(ROOT_DEV) > Image

sync

修改为

Image: boot/bootsect boot/setup tools/system tools/build

objcopy -O binary -R .note -R .comment tools/system tools/kernel

tools/build boot/bootsect boot/setup tools/kernel $(ROOT_DEV) > Image

rm tools/kernel -f

sync

objcopy命令能复制和转化目标文件

objcopy -O binary -R .note -R .comment tools/system tools/kernel

-O binary tools/system tools/kernel将 tools/system 生成二进制文件 tools/kernel

-R .note -R .comment 删除 .note段 和 .comment 段

将 tools/build.c 文件中的

if (((long *) buf)[5] != 0)

die("Non-GCC header of ‘system‘");

这段代码注释掉

//if (((long *) buf)[5] != 0)

// die("Non-GCC header of ‘system‘");

17、make

ld -m elf_i386 -Ttext 0 -e startup_32 boot/head.o init/main.o \

kernel/kernel.o mm/mm.o fs/fs.o \

kernel/blk_drv/blk_drv.a kernel/chr_drv/chr_drv.a \

kernel/math/math.a \

lib/lib.a \

-o tools/system

nm tools/system | grep -v ‘\(compiled\)\|\(\.o$$\)\|\( [aU] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)‘| sort > System.map

gcc -Wall -O -fstrength-reduce -fomit-frame-pointer \

-o tools/build tools/build.c

objcopy -O binary -R .note -R .comment tools/system tools/kernel

tools/build boot/bootsect boot/setup tools/system > Image

Root device is (3, 6)

Boot sector 512 bytes.

Setup is 312 bytes.

System is 128323 bytes.

rm tools/kernel -f

sync

终于编译 linux 内核 0.11 版本成功了!

最 后也可以利用赵炯博士在http://www.oldlinux.org/Linux.old/kernel/0.1x/ 这里提供了修改 linux-0.11-060618-gcc4.tar.gz 好的 0.11版本的内核进行编译,只要修改以下 Makefile 里 -mcpu=i386 为 -march=i386 还需要将 kernel/blk_drv/blk.h 文件第87行 将 #elif 修改为 #else 就可以编译通过了。

总结:编译需要一个过程,学习也是同样需要一个过程。虽然可以利用赵博士修改好的 kernel-0.11 版快速的编译内核,但是那样就不会遇到太多有价值的编译问题,而解决这些问题就是一个学习过程,相信赵博士在编译0.11版本内核的时候也遇到了这些问 题。这样我想起了高中解数学难题的时候,高手解体时总是省略了一些因式分解的过程,而对于菜鸟来说这些省略的过程是非常重要的。

时间: 2024-08-28 03:52:40

[转载]Linux 环境下编译 0.11版本内核 kernel的相关文章

在linux环境下编译运行OpenCV程序的两种方法

原来以为在Ubuntu下安装好了OpenCV之后,自己写个简单的程序应该很容易吧,但是呢,就是为了编译一个简单的显示图片的程序我都快被弄崩溃了. 在谷歌和上StackOverFlow查看相关问题解答之后,我下面就介绍Command Line和CMake两种方式. 首先我先粘上我测试的代码吧,文件名为Test.c 1 #include <highgui.h> 2 3 int main(int argc,char ** argv) { 4 5 IplImage* img = cvLoadImage

在虚拟机linux环境下编译windows版adb fastboot

原文出自:http://blog.chinaunix.net/uid-20546441-id-1746200.html 我根据虚拟机编译遇到的问题进行一些添加 [前提条件] Linux Android源码完整 虚拟机磁盘空间100G左右(60G用来存放代码和编译后的文件) swap 30G左右,若太小会导致在编译后提示缺失文件 [具体步骤] 理论上,只要下一个windows版本的SDK,里面就自带了fastboot和adb工具. 但我最近确实遇到了一个需要在linux下编译出windows版本的

Socket与系统调用深度分析 ——X86 64环境下Linux5.0以上的内核中

1.Socket与系统调用——概述 Socket API编程接口之上可以编写基于不同网络协议的应用程序: Socket接口在用户态通过系统调用机制进入内核: 内核中将系统调用作为一个特殊的中断来处理,以socket相关系统调用为例进行分析: socket相关系统调用的内核处理函数内部通过“多态机制”对不同的网络协议进行的封装方法: 下面会将Socket API编程接口.系统调用机制及内核中系统调用相关源代码. socket相关系统调用的内核处理函数结合起来分析,并在X86 64环境下Linux5

Linux 环境下安装Oracle 11.2.0.4.0 详细步骤

前言: 最近在学习oracle,这里我把安装和配置过程记录下来,按照我的这个方法一步一步基本上不会有问题,如果有问题可以留言大家探讨互相学习一下. 安装环境和版本: 系统版本:Redhat 6.5 oracle版本:11.2.0.4.0 虚拟机版本:Vbox 5.0.2 配置要求: 内存1.5G+,SWAP适宜大小为2G 选择服务时,建议全部选中,关闭防火墙,关闭selinux 一.安装前环境准备 1.安装Oracle服务器软件,需要安装如下软件包(尽量配置yum安装,这样省事儿) yum -y

linux环境下编译带中文的java源文件unmappable character for encoding UTF8

添加-encoding gbk即可编译成功 javac -encoding gbk -cp .:activemq-all-5.11.1.jar  JMSConsumer.java linux下独立运行java程序 http://os.51cto.com/art/201104/256055.htm

Linux环境下编译安装PHP

继上一篇文章Mysql,这一章讲如何部署php服务. 三.php安装 1.首先安装GD库和GD库关联程序 (用来处理和生成图片). yum install \libjpeg-devel \libpng-devel \freetype-devel \zlib-devel \gettext-devel \libXpm-devel \libxml2-devel \fontconfig-devel \openssl-devel \bzip2-devel 2.解压安装gd库到/opt tar xzvf g

linux环境下编译运行OpenCV程序的两种方法

一.命令行Command Line 1 g++ opencv_test.cpp -o opencv_test `pkg-config --cflags --libs opencv` 2 ./opencv_test test.jpg 备注:pkg-config选项--cflags 它是用来指定程序在编译时所需要头文件所在的目录--libs 则是指定程序在链接时所需要的动态链接库的目录 二.CMake工具编译 在程序同目录下创建CMakeLists.txt 1 #文件地址(下载源码安装包中):/op

在linux环境下编译C++ 程序

单个源文件生成可执行程序 下面是一个保存在文件 helloworld.cpp 中一个简单的 C++ 程序的代码: 单个源文件生成可执行程序 /* helloworld.cpp */ #include <iostream> int main(int argc,char *argv[]) { std::cout << "hello, world" << std::endl; return(0); } 程序使用定义在头文件 iostream 中的 cout

Ubantu Linux 环境下编译c++程序

先在文件中新建一个a.cpp文件,在里面编写程序, 然后打开终端输入下面命令即可; $ g++ a.cpp -o b ///编译a.cpp 然后把编译之后的.exe文件存入b中 $ ./b ///执行当前目录下的b,就是运行程序的意思; 这是简单的编译运行,接着就是调试了(个人建议直接用输出对应变量的方法比较好),下面记录一些基本命令 $ g++ a.cpp -o b -g /// $ gdb /// $ file b ///对应文件b $ l ///查看b中的内容, l(list); $ b