|
Size: 1721
Comment:
|
← Revision 14 as of 2025-10-25 23:27:56 ⇥
Size: 3658
Comment:
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 3: | Line 3: |
| Software / Cloud DevSecOps Engineer | Software / Cloud !DevSecOps Engineer |
| Line 5: | Line 5: |
| For the past five years I've been hooked on '''Linux From Scratch (LFS)''' and '''Beyond Linux From Scratch (BLFS)'''. At first, the goal was to '''manually''' build my own Linux distribution by following the LFS and BLFS documentation. That project evolved over time — I now have Jenkins pipelines that automate the build of my distribution in a few hours, featuring a '''Hyprland''' frontend. I run this LFS/BLFS-based system natively and plan to use it as my main platform for future '''Linux kernel development'''. ---- |
For the past five years I've been hooked on '''Linux from Scratch (LFS)''' and '''Beyond Linux from Scratch (BLFS)'''. At first, the goal was to '''manually''' build my own Linux distribution by following the LFS and BLFS documentation. That project evolved over time — I now have Jenkins pipelines that '''automate''' the build of my distribution in a few hours, featuring a '''Hyprland''' frontend. I run this LFS/BLFS-based system natively and plan to use it as my main platform for future Linux kernel development. |
| Line 15: | Line 9: |
| I'm currently focused on gaining a deeper understanding of the '''Linux kernel''' — not only the code itself, but also the community workflow, review process, and contribution practices that surround it. My long-term goal is to start contributing meaningfully to kernel projects while documenting what I learn along the way. ---- |
I'm currently focused on gaining a deeper understanding of the '''Linux kernel''' — not only the code itself, but also the community workflow, review process, and contribution practices that surround it. My long-term goal is to start contributing meaningfully to the Linux kernel project while documenting what I learn along the way. |
| Line 23: | Line 13: |
| * '''Base:''' Linux From Scratch (LFS) / Beyond Linux From Scratch (BLFS) | * '''Base/Native:''' LFS w/pieces of BLFS |
| Line 27: | Line 17: |
| ---- |
|
| Line 31: | Line 19: |
| * Kernel development process/workflow * Kernel development and debugging * Automated build systems * Linux internals, security, and performance tuning * Secure cloud infrastructure and DevSecOps practices ---- |
* '''Linux:''' LFS/BLFS; Hyprland; Linux Kernel: development, process/workflow, debugging, internals, security * '''Cloud:''' Infrastructure, security * '''!DevSecOps:''' practices * '''Other:''' Automated build systems, Opensource |
| Line 43: | Line 28: |
| ---- |
|
| Line 47: | Line 30: |
| I'll use this section to track progress as I explore the Linux kernel and related tooling. Stay tuned for notes on kernel builds, debugging experiments, and contribution attempts. |
* '''First Linux Kernel related ticket:''' I found a ticket that looked like an easy one, for a first attempt at contributing to something that would be included in a future Linux kernel release. The goal here was just to get more familiar with the workflow/process for getting something included in a future Linux kernel release. I found ticket https://bugzilla.kernel.org/show_bug.cgi?id=220489. It looked to be an easier ticket since it was a man-pages documentation-related ticket. I basically did an advanced search with a Severity: low, Status: NEW, ASSIGNED, REOPENED, and Creation date: (is greater than) -3M. At the time of my search, there were only 4 results. I could see that the ticket was still assigned to the general group email and that it didn't appear that anyone started looking at it yet. To play it safe though, I still emailed the maintainer email address to give them a heads up of my interest and plan to work on the ticket, email archived at https://lore.kernel.org/linux-man/aP0T3yZ0jflUtliV@secra.localdomain/T/#u. The steps I followed to carry out the fix are listed below. This is still a work in progress, I need to wait for the peer review. More updates may come out of the peer review. * git clone https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git * cd man-pages * git checkout master * git pull origin master * git checkout -b fix-copy_file_range-fallback-doc * Fix applied to man2/copy_file_range.2 man-page file * make -R check * More fixes applied to man2/copy_file_range.2 man-page file due to found issue from check make cmd * git add man2/copy_file_range.2 * git commit --amend -s * git format-patch origin/master * git log --oneline origin/master.. * git send-email --to=linux-man@vger.kernel.org --cc=mtk.manpages@gmail.com 0001-Subject-copy_file_range.2-glibc-no-longer-provides-f.patch * The archive showing the emailed patch can be seen at https://lore.kernel.org/linux-man/20251025221258.45073-1-wg21908@gmail.com/T/#u |
About Me
Software / Cloud DevSecOps Engineer
For the past five years I've been hooked on Linux from Scratch (LFS) and Beyond Linux from Scratch (BLFS). At first, the goal was to manually build my own Linux distribution by following the LFS and BLFS documentation. That project evolved over time — I now have Jenkins pipelines that automate the build of my distribution in a few hours, featuring a Hyprland frontend. I run this LFS/BLFS-based system natively and plan to use it as my main platform for future Linux kernel development.
Goals
I'm currently focused on gaining a deeper understanding of the Linux kernel — not only the code itself, but also the community workflow, review process, and contribution practices that surround it. My long-term goal is to start contributing meaningfully to the Linux kernel project while documenting what I learn along the way.
System Details
Base/Native: LFS w/pieces of BLFS
Window Manager: Hyprland
Tools: GDB, QEMU, Vim, Git, Mutt, and Sendmail
Interests
Linux: LFS/BLFS; Hyprland; Linux Kernel: development, process/workflow, debugging, internals, security
Cloud: Infrastructure, security
DevSecOps: practices
Other: Automated build systems, Opensource
Contact
Email: <wg21908 AT SPAMFREE gmail DOT com>
Learning Journal
First Linux Kernel related ticket: I found a ticket that looked like an easy one, for a first attempt at contributing to something that would be included in a future Linux kernel release. The goal here was just to get more familiar with the workflow/process for getting something included in a future Linux kernel release. I found ticket https://bugzilla.kernel.org/show_bug.cgi?id=220489. It looked to be an easier ticket since it was a man-pages documentation-related ticket. I basically did an advanced search with a Severity: low, Status: NEW, ASSIGNED, REOPENED, and Creation date: (is greater than) -3M. At the time of my search, there were only 4 results. I could see that the ticket was still assigned to the general group email and that it didn't appear that anyone started looking at it yet. To play it safe though, I still emailed the maintainer email address to give them a heads up of my interest and plan to work on the ticket, email archived at https://lore.kernel.org/linux-man/aP0T3yZ0jflUtliV@secra.localdomain/T/#u. The steps I followed to carry out the fix are listed below. This is still a work in progress, I need to wait for the peer review. More updates may come out of the peer review.
git clone https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git
- cd man-pages
- git checkout master
- git pull origin master
- git checkout -b fix-copy_file_range-fallback-doc
- Fix applied to man2/copy_file_range.2 man-page file
- make -R check
- More fixes applied to man2/copy_file_range.2 man-page file due to found issue from check make cmd
- git add man2/copy_file_range.2
- git commit --amend -s
- git format-patch origin/master
- git log --oneline origin/master..
git send-email --to=linux-man@vger.kernel.org --cc=mtk.manpages@gmail.com 0001-Subject-copy_file_range.2-glibc-no-longer-provides-f.patch
The archive showing the emailed patch can be seen at https://lore.kernel.org/linux-man/20251025221258.45073-1-wg21908@gmail.com/T/#u