mini linux:linux
啓動流程:ios
centos6:post》bootsequence(bios)》BootLoader(mbr)》kernel(如沒法直接識別硬盤驅動,需藉助ramdisk)》rootfs》/sbin/initvim
centos7:post》bootsequence(bios)》BootLoader(mbr)》kernel(如沒法直接識別硬盤驅動,需藉助ramfs)》rootfs》/sbin/systemdcentos
bootloader:lilo、grub legacy、grub2bash
stage1:mbr網絡
stage1_5:filesystem driver架構
stage2:grub程序自己app
內核編譯步驟:ide
一、make menuconfig》生成.config文件post
二、make [-j #]
三、make modules_install
四、make install
mini linux步驟:
一、內核:kernel(非模塊方式)
二、根文件系統:busybox
三、按需進行命令移植
複製程序及其依賴的庫文件腳本示例:
#!/bin/bash
#
target=/mnt/sysroot
[ -d $target ] || mkdir $target
read -p "a command:" command
libcp() {
for lib in $(ldd $1 | grep -o "[^[:space:]]/lib[^[:space:]]");do
libdir=$(dirname $lib)
[ -d $target$libdir ] || mkdir -p $target$libdir
[ -f $target$lib ] || cp $lib $target$lib
done
}
while [ "$command" != "quit" ];do
if ! which $command &> /dev/null;then
read -p "no such command, enter again:" command
continue
fi
command=$(which --skip-alias $command)
cmnddir=$(dirname $command)
[ -d $target$cmnddir ] || mkdir -p $target$cmnddir
[ -f $target$command ] || cp $command $target$command
libcp $command
read -p "a other command(quit):" command
done
根據cpu、pci、ethernet、filesystem等設備信息挑選內核參數,lscpu、lspci、lsusb等
編譯時選擇的基本模塊與功能介紹
1.[*] 64-bit kernel #編譯64位內核
2.Enable loadable module suppose #支持內核的裝載與卸載 [*] module unloding
3.Bus options #相關PCI接口支持
4.Processor type and features #關於處理器版本選擇,選擇本身處理器合適的
5.Device drivers #關於硬盤,網卡各設備的驅動lspci查看系統設備信息(本身選擇)
6.File Systems #文件系統支持(本身選擇)
7.Excutable file formates/Emulattions #支持文件可執行文件的格式(本身選擇)
8.Networking Support #網絡服務支持
準備硬盤,安裝grub,分區,複製編譯後的內核
default=0
timeout=3
title minilinux
root (hd0,0)
kernel /bzImage ro root=/dev/sda2
編譯安裝單文件的busybox,靜態方式編輯依賴glibc-static
選擇
[*] Build static binary (no shared libs) 靜態編譯
What kind of applet links to install (as soft-links) ---> (X) as soft-links
(./_install) Destination path for 'make install' 定義安裝路徑
default=0timeout=3title minilinuxroot (hd0,0)kernel /bzImage ro root=/dev/sda2 init=/sbin/init