Processing and Compiling Kernel Source Code The configuration system of the Linux kernel consists of three parts: 1. Makefile: Makefile distributed in the Linux kernel source code, defines the compilation rules of the Linux kernel; 2. Configuration file (config.in) : Provides users with configuration options; 3. Configuration tools: including configuration command interpreter (interpreting configuration commands used in configuration scripts) and configuration user interface (providing a character-based interface, Ncurses-based graphical interface, and Xwindows-based graphical interface) User configuration interfaces, each corresponding to Make config, Make menuconfig, and make xconfig). These configuration tools are all written in a scripting language such as Tcl/TK, Perl (and some code written in C). This article does not analyze the configuration system itself, but rather how to use the configuration system. Therefore, unless it is the maintainer of the configuration system, the general kernel developers do not need to understand their principles, just need to know how to write the Makefile and configuration files. Apply the patch If you use the above script, it will automatically download the kernel source for you. If you think the version is lower, you can download it yourself. I downloaded the kernel code of 2.6.22 here, go directly to http: //download, and also download patch-2.6.22, although I can't use it at first. By the way, in fact, the 2.6.15.4 version of the default download is enough. There is no special case and there is no need to download it separately. Many features of the new version of the kernel are not used. If the kernel version you downloaded has a corresponding patch, you need to patch the kernel source code through the patch. A patch is a text document that contains changes between two different versions of the source tree. Patches are created by the diff application. We use the patch program to apply the downloaded patch. The patch program reads a diff (or patch) file and applies the changes described in the file to the code tree. Patches in the Linux kernel are generated relative to the parent directory where the kernel source directory is saved. This means that the file path in the patch file contains the name of the kernel source file directory on which it is based (or other names such as "a/" and "b/"). This is probably not the same as the name of the kernel source directory on your local machine (but it is very useful for viewing the kernel version on which an unlabeled patch is based). You should switch to your kernel source directory and remove the first component of the file name path in the patch when patching (the -p1 parameter of the patch command can do this). The specific process is like this, for example, extract the downloaded patch archive to the /patch directory, extract the file name: xxxx.patch, and then enter the folder of your kernel source file, copy the patch here, first run The command patch -p1 –dry-run < /xxxx/patch-xxxx is to test the application patch. This command will not make any changes to your kernel source. If there is no error output in this step, execute: patch -p1 < /xxxx/patch-xxxx If there is no error message, it means the patch has been marked. Modify the file , the kernel source code at this time, if it is used for desktop compilation, the change is enough. But we are compiling the kernel that can run on ppc, so we have to continue to modify it. Modify the serial port code First, there is a serial terminal on the XUP board, and there is only one, which means that many processes, including the boot loader, boot process and the next steps must interact with this serial port, if the default baud rate is used. 9600, it's a bit slow, so we can modify its baud rate to be larger. Take 38400 as an example. Please modify the hardware platform under edk. For system source code modification, please find arch/ppc/boot/common/ns16550.c and find this line: #define SERIAL_BAUD 9600 and change it to #define SERIAL_BAUD 38400 can be. Modify xparameters.h to generate the xparameters_.h file when generating bsp. You need to modify the arch/ppc/platforms/4xx/xparameters.h file in the source directory to include the xparameters_.h file. Modifying the makefile Next, let's take a look at the Makefile. Since the Linux kernel source code is organized in a tree structure, the Makefile is also distributed in the directory tree. The Makefile in the Linux kernel and the files directly related to the Makefile are: 1. Makefile: The top-level Makefile is the overall control file for the entire kernel configuration and compilation. Bother finally2. .config: A kernel configuration file containing configuration options selected by the user to hold the results of the kernel configuration (eg make config). 3. arch/*/Makefile: Makefiles located in various CPU architecture directories, such as arch/arm/Makefile, are platform-specific Makefiles. 4. Makefiles in each subdirectory: such as drivers/Makefile, responsible for the management of the source code in the subdirectory. 5. Rules.make: The rules file, used by all Makefiles. After the user configures through make config, a .config is generated. The top-level Makefile reads the configuration choices in .config. The top-level Makefile has two main tasks: generating vmlinux (uncompressed kernel) files and kernel modules. To do this, the top-level Makefile recursively enters each subdirectory of the kernel, calling the Makefiles located in those subdirectories. As for which subdirectories to enter, it depends on the configuration of the kernel. In the top-level Makefile, there is a sentence: include arch/$(ARCH)/Makefile, which contains the Makefile under a specific CPU architecture. This Makefile contains platform-related information. For more instructions on Makefiles, see the IBM Documentation Library article Linux Kernel Configuration System. Tip : The difference between various kernel formats vmlinux is the uncompressed original kernel, ELF format, often used for kernel debugging; vmlinuz, or zImage or bzImage, is the kernel that vmlinux is compressed and packaged with gzip self-extracting code, in BIN format Often used as the boot kernel for a system or target board. The Makefiles located in each subdirectory also construct a list of source files needed for the current configuration based on the configuration information given by .config, and include $(TOPDIR)/Rules.make at the end of the file. Let's talk about how to modify the Makefile. Open the Makefile in the kernel source directory and find the following two lines: ARCH ?= $(SUBARCH)CROSS_COMPILE ?= This is the value indicating that the value of ARCH is SUBARCH, and the value of CROSS_COMPILE is null. We should change it to: ARCH := ppcCROSS_COMPILE = powerpc-405-linux-gnu- This means that the hardware platform is ppc, and the cross-compiler is powerpc-405-linux-gnu-series. Little knowledge: ppc or powerpc? Careful friends may find that the arch/platforms directory has both a ppc directory and a powerpc directory. What is going on? Since IBM established the power.org organization, it called the PowerPC processor with Power Architecture. Therefore, the PPC that used to be used in the past is now called PowerPC. In other words, PowerPC is now an official name. The Linux kernel started with 2.6.15 and has reorganized arch/ppc/ to arch/powerpc/, but arch/ppc/ will continue to exist until the entire migration is completed, but arch/ppc/ will stop. Development, the next Linux kernel for PowerPC will be moved to the new directory of arch/powerpc/ to continue to develop. A closer look at the two folders reveals a slight difference. The previous PPC platform classification was written in arch/ppc/platforms/*.c, and the organizational structure is not very good. It is now reorganized in arch/powerpc/platforms/ Under the directory, a platform is a much cleaner directory: # ls arch/powerpc/platforms/4xx/ 85xx/ apus/ embedded6xx/map/ prep/82xx/ 86xx/ cell/ iseries/ pasemi/ pseries/83xx/ 8xx/ chrp/ Makefile powermac/ Of course, for now, it is not necessary to set the arch value in the Makefile to ppc or powerpc, because even if you choose ppc, the shared include file must be included in the asm-powerpc when building the system. There is no need to worry about this. The kernel configuration is followed by kernel configuration. I recommend using the "make menuconfig" command instead of the "make xconfig" recommended in some articles, because the latter may produce compilation errors for unknown reasons. Menuconfig is a text mode, menu driven configuration interface, and xconfig is a Tcl/Tk based X graphical configuration interface. Another common one is make oldconfig. If you only want to modify some small places based on the original kernel configuration, this command will save a lot of trouble, but we have to change it here, so we don't need this. Regarding the principle and process of configuring the kernel, unfamiliar friends can refer to this article, which will not be described in detail here. Incidentally, the following error may occur when running this command: 1 /usr/bin/ld: crt1.o: No such file: No such file or directory This error can be solved by installing libc6-dev 2 /usr/bin/ld : can not find -lncurses this error can be solved by installing libncurses5-dev 3 checklist.o: file not recognized: File format not recognized The solution is to use the "make mrproper" command to clear all old Xwindow configuraTIon files, as to why there is this error I didn't study it in depth. If you know the friend, please give pointers to the configuration at the beginning. It is recommended that you make a minimum. Guaranteed runable .config file. Later, add some features according to your needs, and be careful when adding features. If you don't pay attention, you won't be able to compile properly or it won't work. Also note that all options marked with the "new" tab are subject to the default settings and do not modify it. The following options are the minimum system configuration I use. If you use a different kernel version than I am, you may need to change some config options, or if you have problems with this configuration, please leave a message here, I will try my best to help you. analysis. The list and general explanations are listed as follows: General Setup* Prompt for development and/or incomplete drivers(XUP)Local version - append to kernel release* IniTIal RAM disk (initrd) support* System V IPC* Configure standard kernel features —> * Sysctl syscall support ? Processor* 40x Processor Type* Xilinx-ML300 Machine Type* Math emulaTIon* TTYS0 device and default consolePlatform opTIons* High memory support* Default bootloader kernel arguments~“console=ttyS0,38400 root=/dev/xsysace/disc0/part3 rwâ€Networking * Unix domain sockets* TCP/IP networking* IP: multicasting* IP: kernel level autoconfiguration* IP: DHCP support* IP: TCP syncookie support (disabled per default) Device drivers—Memory Technology Devices (MTD)* Memory Technology Device (MTD) Support* MTD partitioning support* RedBoot partition table parsing* Direct char device access to MTD devices* Caching block device access to MTD devices* RAM/ROM flash chip device drivers* Detect flash chips by Common Flash Interface (CFI) probe* Suport for AMD/Fujitsu flash chips (this is based on your existing chip) Device drivers—Block Devices* Loopback device support* Network block device support* RAM disk support(4096) Default RAM disk size* Xilinx on-chip System ACEDevice drivers—Network Devic e Support* Network device support* Ethernet (10 or 100Mbit)* PowerPC 4xx on-chip ethernet? Device drivers—Character devices—Serial drivers* 8250/16550 and compatible serial support* Xilinx uartlite serial port support* Support for console on Xilinx uartlite serial portFile systems* Second extended fs support* Kernel automounter version 4 support (also supports v3)* Pseudo Filesystems —>* /proc/kcore support* Virtual memory file system support (former shm fs)* Miscellaneous filesystems —>* Journaling Flash File System v2 (JFFS2) support(0) JFFS2 debugging verbosity (0=quiet, 2=noisy) * Network file systems —>* NFS file system support* Provide NFSv3 client support* Root file system on NFS* NFS server support* Provide NFSv3 server support* SMB file system support (to mount Windows shares etc.)* Native Language Support —> * Default NLS Option: "cp437" Kernel hacking* Kernel debugging* Compile the kernel with debug info* Include BDI-2000 user context switcher In fact, the above options are not minimal. If you encounter some problems during compilation, you can see See the problem Which part of the source code belongs to, as long as it can be removed and removed. The principle is to get a kernel that can run, and then want to expand things. After the selection is completed, copy the previously compiled BSP to the source tree directory to overwrite the original file. Reprinted from: Baixi space of fcni_cn
Oled Microdisplay,The Oled Microdisplay,Oled 0.87 Inch,Tft Lcd Oled
ESEN Optoelectronics Technology Co., Ltd, , https://www.esenlcd.com