Skip to content
#

Kernel

A kernel is the heart of almost every operating system. It is always loaded in memory at any time and deals with the hardware to provide an interface for the software. It also manages peripherals, memory, interrupts, and processes. Examples of widely used kernels include Windows NT and Linux.

Here are 3,189 public repositories matching this topic...

AtkinsSJ
AtkinsSJ commented Mar 23, 2022

TextEditor has support for opening a file with the cursor at a specific location, with TextEditor file.txt:line:col, but when I tested it out today, it was putting the cursor in the wrong place.

Steps:

  1. Run TextEditor README.md:40:6 in the terminal
  2. Notice that README.md is opened, but the cursor is at the end of line 1, not at line 40.

I tested a few different files, and line/colu

bug good first issue
build
gyohng
gyohng commented Jun 7, 2021

debootstrap.sh replaces extraargs or another line in the environment where it finds 'console=' before the line that starts with console=

Suggested the following fix:

--- a/lib/debootstrap.sh
+++ b/lib/debootstrap.sh
@@ -626,7 +626,7 @@ prepare_partitions()
 	# if we have a headless device, set console to DEFAULT_CONSOLE
 	if [[ -n $DEFAULT_CONSOLE && -f $SDCARD/boot/armbianE
4.need PR good first issue
rminnich
rminnich commented Feb 2, 2022

Describe the bug
the bzimage package can't unpack kernels compress with xz. This is because when I wrote it I was not sure how to find
the compressed part and used a simple minded search.

To Reproduce
create a bzImage but enable XZ compression in the kernel (yep, it's still called a bzimage)
use the kexec command with debug and note you see this:
2022/02/02 21:13:15 Failed to unpa

Bug Help Wanted Good First Issue Code Health

Theseus is a modern OS written from scratch in Rust that explores 𝐢𝐧𝐭𝐫𝐚𝐥𝐢𝐧𝐠𝐮𝐚𝐥 𝐝𝐞𝐬𝐢𝐠𝐧, novel OS structure, and state management. It strives to close the semantic gap between compiler and hardware to maximally leverage the power of language safety, and thus shift OS responsibilities like resource management into the compiler.

  • Updated Mar 25, 2022
  • Rust
Wikipedia
Wikipedia