What is a kernel?
What is a kernel? If you spend any time reading Android forums, blogs, how-to posts or online discussion you’ll soon hear people talking about the kernel. A kernel isn’t something unique to Android — iOS and MacOS have one, Windows has one, BlackBerry’s QNX has one, in fact all high level operating systems have one. The one we’re interested in is Linux, as it’s the one Android uses. Let’s try to break down what it is and what it does.
Android devices use the Linux kernel, bet every phone uses their own version of it. Linux kernel maintainers keep everything tidy and available, contributors (like Google) add or alter things to better meet their needs, and the people making the hardware contribute as well, because they need to develop hardware drivers for the parts they’re using for the kernel version they’re using. This is why it takes a while for independent Android developers and hackers to port new versions to older devices and get everything working. Drivers written to work with one version of the kernel for a phone might not work with a different version of software on the same phone. And that’s important, because one of the kernel’s main functions is to control the hardware. It’s a whole lot of source code, with more options while building it than you can imagine, but in the end it’s just the intermediary between the hardware and the software.
When software needs the hardware to do anything, it sends a request to the kernel. And when we say anything, we mean anything. From the brightness of the screen, to the volume level, to initiating a call through the radio, even what’s drawn on the display is ultimately controlled by the kernel. For example — when you tap the search button on your phone, you tell the software to open the search application. What happens is that you touched a certain point on the digitizer, which tells the software that you’ve touched the screen at those coordinates. The software knows that when that particular spot is touched, the search dialog is supposed to open. The kernel is what tells the digitizer to look (or listen, events are «listened» for) for touches, helps figure out where you touched, and tells the system you touched it. In turn, when the system receives a touch event at a specific point from the kernel (through the driver) it knows what to draw on your screen. Both the hardware and the software communicate both ways with the kernel, and that’s how your phone knows when to do something. Input from one side is sent as output to the other, whether it’s you playing Angry Birds, or connecting to your car’s Bluetooth.
It sounds complicated, and it is. But it’s also pretty standard computer logic — there’s an action of some sort generated for every event, and depending on that action things happen to the running software. Without the kernel to accept and send information, developers would have to write code for every single event for every single piece of hardware in your device. With the kernel, all they have to do is communicate with it through the Android system API’s, and hardware developers only have to make the device hardware communicate with the kernel. The good thing is that you don’t need to know exactly how or why the kernel does what it does, just understanding that it’s the go-between from software to hardware gives you a pretty good grasp of what’s happening under the glass.
Sort of gives a whole new outlook towards those fellows who stay up all night to work on kernels for your phone, doesn’t it?
Samsung needs to bring back its iPod competitor
I don’t want to buy an iPod Touch. Since I want a reasonably priced PMP with acceptable audio hardware that can install a few crucial apps, I might have to.
VoLTE: How to use it and why you should care
VoLTE — or Voice over LTE — is the new standard for calling throughout the U.S., Canada, and parts of Europe. Not only does it facilitate much higher call quality between cell phones, but it allows devices to stay connected to LTE while on a call, improving data speeds for everyone.
PlayStation reportedly planning service to compete with Xbox Game Pass
Sony is planning to create a service similar to Xbox Game Pass, according to a new report. The service could launch as early as sometime in the spring of 2022, with multiple tiers.
These are the best rugged Android phones
Living the rough and tumble life? Get yourself a smartphone that can handle everything you throw at it — or throw your phone at.
Источник
What is a kernel — Gary explains
Spend enough time around Android, or even PCs, and eventually you will come across the term, “the Linux kernel,” since Android uses the Linux kernel. The “Linux” part is easy enough to understand, it is a play-on-words of Linus, as in Linus Torvalds, the original creator of Linux. But kernel? What is a kernel? What do we mean by the Linux kernel? Let’s find out!
The thing to remember about computers is that they are dumb. Incredibly dumb. They only know to do one thing and one thing only, execute instructions. One instruction after another, round and round, ad infinitum. It is only when a set of instructions is created that performs a useful task that computers, including mobile devices, take on a semblance of ability.
[related_videos title=”Latest videos:” align=”center” type=”custom” videos=”682253,682146,682235,681627″]
From the moment a computer starts it needs instructions, it can’t do anything without them. Even while your Android device is booting and showing some boot logo, the CPU is just following instructions. Once your phone is fully booted you get Android. What we see of Android is a nice launcher, some apps like the Chrome web browser and maybe some games. But there is more going on than meets the eye.
Under the user interface there are a bunch of different systems including the Java virtual machine (i.e. Dalvik or ART) and the SurfaceFlinger, which is responsible for compositing all the different things that needs to be drawn into a single buffer that is then displayed on the screen.
Go down deeper, really deep – beyond the permafrost, and you reach the kernel, the Linux kernel to be precise. All multi-tasking operating systems have a kernel of one form or another. Windows has a kernel, OS X has a kernel, iOS has a kernel, Windows Phone has a kernel, and of course Android has a kernel. But of those only Android uses the Linux kernel. Windows and Windows Phone/Mobile have their own kernel often referred to as the NT kernel, while OS X and iOS use a kernel known as Darwin.
There are other kernels out there including Unix-like kernels from the FreeBSD project or the NetBSD project; real-time kernels from projects like FreeRTOS; embedded kernels from projects like Contiki; and even low power kernels like the mbed OS kernel from ARM. What this means is that any computing device from an IoT thing or wearable right up to a supercomputer uses a kernel.
OK, so kernels are important, but what are they? In a nutshell the kernel is the core program which manages the CPU resources, the system memory, the system devices, including the file systems and networking, and is responsible for managing all the processes.
That means that when you start an app it is the kernel which loads the app into memory, creates the processes needed and starts the app running. When app needs memory it is the kernel that allocates it. When the app wants networking it is the kernel which does all the low level processing. The driver for devices like Bluetooth are also in the kernel. When the app wants to perform a task in the background it is the kernel which handles the background threads. When the app closes it is the kernel which cleans up all the memory and other resources that were used by the app.
As you can imagine the kernel is a fairly complex piece of software. The Linux kernel is thought to be over 15 million lines of source code. That includes all the drivers (over 70% of the code) plus the support for the different system architectures (ARM, x86, MIPS, IBM, PowerPC, SPARC, etc). When the kernel is built for a particular device, say a smartphone, not all those 15 million lines of code are used, however even when you strip away what isn’t needed for a particular build there is still a lot of code.
Monolithic vs microkernel
As with all complex systems, there are different approaches that can be used when it comes to designing a kernel. The Linux kernel is what is known as a monolithic kernel. That means that the kernel is one program using one memory space. The main alternative is the microkernel approach. With microkernels the essentials of the kernel are placed in the smallest possible program and it interacts with other kernel level programs which run as separate servers or services.
Back in 1992 when Linux was in its early days, Linus Torvalds and Professor Andrew Tanenbaum (who is famous for his books on operating system design and networking) had an online discussion (some say a flame war) about the different merits of monolithic kernel designs versus microkernels. Tanenbaum preferred microkernels and Linus was writing a monolithic kernel. That is now all history as Linux has remained a monolithic kernel and it is the kernel used in Android. If you are interested in a Unix-like microkernel operating system then you should check out Minix 3.
Since Linux is a monolithic kernel there needs to be a way to enable and disable certain parts of the kernel depending on your needs. This is done at compile time using a system that allows the kernel to be tuned, trimmed and configured as needed. Some of the configurations do more than just activate or deactivate certain functions, they actually change the behavior of the kernel. Since Linux is open source and Android is open source it is possible to build a version of Android with a tweaked kernel, one that uses different settings than the default kernel. This kernel can then be copied on to your Android device instead of the default kernel. To do this you will probably need a phone with an unlocked bootloader and your device needs to be rooted.
Probably the most well known alternative kernel for Android is the Franco Kernel. It is available for the different Nexus devices (including the Galaxy Nexus and the Nexus 4) and there is even a app to make using the kernel as easy as possible. However the Franco Kernel isn’t the only alternative kernel, there are others including the ElementalX Kernel, the Jolla kernel, and many others.
Pros and cons?
First the downsides, to put a new kernel on your Android device you are going to need root access. Some people are very comfortable with having root access on their devices, others aren’t. It also implies a certain level of technical expertise. Putting on a new kernel isn’t within everyone’s skill set.
Also you need to trust the kernel builder. Probably, hopefully, not because there could be nefarious code included in the new kernel build, but more in terms of how reliable the kernel builder is in terms of fixing bugs. There is also the danger of “bricking” your device. When you get an Android smartphone from a reliable OEM then the firmware has had lots of testing before it is released. If you start playing with new kernels you could find yourself in the position where the kernel isn’t working properly and the kernel builder isn’t responding to bugs requests or questions. Other than a bricked phone, the answer will be to install a different kernel.
It is also worth noting that rooting your phone and using a new kernel will invalidate your warranty. Most of the kernels released on forums like XDA carry a warning: “Your warranty is now void. I am not responsible for bricked devices.” Some even go on to say things like this, “YOU are choosing to make these modifications, and if you point the finger at me for messing up your device, I will laugh at you.” So you have been warned.
[related_videos title=”Flagships of 2016:” align=”left” type=”custom” videos=”679646,679576,676936,675613,671671,668973,676937″]On the plus side you get a kernel that is highly configurable, you will be able to play with a whole host of different governors and I/O schedulers, plus these custom built kernels tend to have a range of extra features. It also means that you can get access to more recent versions of the Linux kernel.
Anecdotally custom built kernels can improve battery life or improve performance depending on how the kernel builder has tweaked the settings and depending on your usage patterns. But as I have mentioned before, all the major OEMs (including Google) are competing with each (and with Apple and Microsoft to some extent) in an attempt to gain customers by offering the best smartphones at the best prices. If it was possible to get better battery life or better performance just by tweaking a few kernel parameters then you can rest assured that they would! Generally a boost in battery life means lower performance, or a boost in performance means lower battery life, the goal is to strike that happy medium where performance is good, but so is battery life.
Wrap-up
All multitasking operating systems have a kernel of one sort or another. It is the core functionality that manages the system resources including the memory, the processes and the various drivers. The rest of the operating system, whether it be Windows, OS X, iOS, Android or whatever is built on top of the kernel. The kernel used by Android is the Linux kernel. Since the Linux kernel and Android are open source it is possible to build custom kernels with different configuration settings. These kernels can then replace the default kernel supplied with your device. To do that you will need root access and an unlocked bootloader. Popular replacement kernels include the Franco Kernel and the ElementalX Kernel, however there are many others.
What did you think of this explanation of kernels? Let us know in the comments below. Also why not check out the rest of the Gary Explains series.
Источник