Skip to content

Latest commit

 

History

History
34 lines (21 loc) · 2.93 KB

project-structure.md

File metadata and controls

34 lines (21 loc) · 2.93 KB

1.2: Linux project structure

This is the first time we are going to talk about Linux. The idea is first to complete some small step in writing our own kernel, and then take a look at how the same things work in Linux. So far we have done very little: we just implemented our first bare metal hello world program, Still, we will be able to find some similarities between the RPi OS and Linux. And now we are going to explore some of them.

Project structure

Whenever you start investigating any large software project, it worth taking a quick look at the project structure. This is very important because it allows you to understand what modules compose the project and what is the high-level architecture. Let's try to explore project structure of the Linux kernel.

First of all, you need to clone the Linux repository.

git clone -b v4.14 --depth 1 https://github.com/torvalds/linux.git

We are using v4.14 version because this was the latest version at the time of writing. All references to the Linux source code will be made using this specific version.

Next, let's take a look at the folders that we can find inside the Linux repository. We are not going to look at all of them, but only at those that I consider the most important to start with.

  • arch This folder contains subfolders, each for a specific processor architecture. Mostly we are going to work with arm64 - this is the one that is compatible with ARM.v8 processors.
  • init Kernel is always booted by architecture specific code. But then execution is passed to the start_kernel function that is responsible for common kernel initialization and is an architecture independent kernel starting point. start_kernel function, together with some other initialization functions, is defined in the init folder.
  • kernel This is the core of the Linux kernel. Almost all major kernel subsystems are implemented there.
  • mm All data structures and methods related to memory management are defined there.
  • drivers This is the largest folder in the Linux kernel. It contains implementations of all device drivers.
  • fs You can look here to find different filesystem implementations.

This explanation is very high-level, but this is enough for now. In the next chapter, we will try to examine Linux build system in some details.

Previous Page

1.1 Kernel Initialization: Introducing RPi OS, or bare metal "Hello, world!"

Next Page

1.3 Kernel Initialization: Kernel build system