<feed xmlns='http://www.w3.org/2005/Atom'>
<title>NeKernel/dev/boot/modules/BootNet/BootNet.h, branch v0.0.82</title>
<subtitle></subtitle>
<id>https://git.nekernel.org/cgit/NeKernel/atom?h=v0.0.82</id>
<link rel='self' href='https://git.nekernel.org/cgit/NeKernel/atom?h=v0.0.82'/>
<link rel='alternate' type='text/html' href='https://git.nekernel.org/cgit/NeKernel/'/>
<updated>2025-11-24T02:02:43+00:00</updated>
<entry>
<title>feat! breaking changes on kernel sources.</title>
<updated>2025-11-24T02:02:43+00:00</updated>
<author>
<name>Amlal El Mahrouss</name>
<email>amlal@nekernel.org</email>
</author>
<published>2025-11-24T02:02:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nekernel.org/cgit/NeKernel/commit/?id=83d870e58457a1d335a1d9b9966a6a1887cc297b'/>
<id>urn:sha1:83d870e58457a1d335a1d9b9966a6a1887cc297b</id>
<content type='text'>
Signed-off-by: Amlal El Mahrouss &lt;amlal@nekernel.org&gt;
</content>
</entry>
<entry>
<title>feat: NeKernel is now under the Apache 2.0 license.</title>
<updated>2025-11-17T09:03:39+00:00</updated>
<author>
<name>Amlal El Mahrouss</name>
<email>amlal@nekernel.org</email>
</author>
<published>2025-11-17T09:02:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nekernel.org/cgit/NeKernel/commit/?id=791fcd646503f05617f22e6006c115095746da26'/>
<id>urn:sha1:791fcd646503f05617f22e6006c115095746da26</id>
<content type='text'>
Signed-off-by: Amlal El Mahrouss &lt;amlal@nekernel.org&gt;
</content>
</entry>
<entry>
<title>feat: Replace CoreBoot module with NeBoot module.</title>
<updated>2025-07-31T07:52:46+00:00</updated>
<author>
<name>Amlal El Mahrouss</name>
<email>amlal@nekernel.org</email>
</author>
<published>2025-07-31T07:52:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nekernel.org/cgit/NeKernel/commit/?id=30f6aa05db0e99970fab65c8c8f10cea9830e3cc'/>
<id>urn:sha1:30f6aa05db0e99970fab65c8c8f10cea9830e3cc</id>
<content type='text'>
Signed-off-by: Amlal El Mahrouss &lt;amlal@nekernel.org&gt;
</content>
</entry>
<entry>
<title>dev, BootNet: improved the protocol headers and implementation.</title>
<updated>2025-04-24T05:30:49+00:00</updated>
<author>
<name>Amlal El Mahrouss</name>
<email>amlal@nekernel.org</email>
</author>
<published>2025-04-24T05:30:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nekernel.org/cgit/NeKernel/commit/?id=0e5217d1a7af44a88341c5551fe79b8983bb7433'/>
<id>urn:sha1:0e5217d1a7af44a88341c5551fe79b8983bb7433</id>
<content type='text'>
Signed-off-by: Amlal El Mahrouss &lt;amlal@nekernel.org&gt;
</content>
</entry>
<entry>
<title>bootloader, netboot: integrate EFI_SIMPLE_NETWORK_PROTOCOL for HTTP-based kernel fetching</title>
<updated>2025-04-14T07:42:28+00:00</updated>
<author>
<name>Amlal El Mahrouss</name>
<email>amlal@nekernel.org</email>
</author>
<published>2025-04-14T07:42:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nekernel.org/cgit/NeKernel/commit/?id=a01ba7acb4786a6354349408b3bcc4c2d007b274'/>
<id>urn:sha1:a01ba7acb4786a6354349408b3bcc4c2d007b274</id>
<content type='text'>
- Added BootNet module to support network boot using EFI_SIMPLE_NETWORK_PROTOCOL
- Replaced ModuleMain with BootloaderMain as unified entry point
- Implemented EFI protocol discovery, startup, and logging for netboot
- Updated linker scripts, GDB configs, and build targets accordingly
- Laid groundwork for full HTTP/TCP/IP bootloader logic
- Improved kernel handoff logic and memory allocation fallback handling

Signed-off-by: Amlal El Mahrouss &lt;amlal@nekernel.org&gt;
</content>
</entry>
<entry>
<title>boot/net: rename Boot.S files, clarify EEPROM implication, and prep UDP read</title>
<updated>2025-04-02T06:10:08+00:00</updated>
<author>
<name>Amlal El Mahrouss</name>
<email>amlal@nekernel.org</email>
</author>
<published>2025-04-02T06:10:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nekernel.org/cgit/NeKernel/commit/?id=6c7e5ebc003a0bc4f98c23a8f9754b273a6e3a28'/>
<id>urn:sha1:6c7e5ebc003a0bc4f98c23a8f9754b273a6e3a28</id>
<content type='text'>
- Renamed Boot.S → BootNetStartup.S and SysChk/Boot.S → SysChkStartup.S for clarity
- Replaced BOOTNET_INTERNET_HEADER.ImpliesEEPROM with ImpliesProgram to better reflect the generic reprogramming intent
- Introduced `bootnet_read_udp_packet()` stub for future UDP packet parsing from bootnet.json
- Minor alignment and comment fixes in various headers (CoreBoot, EPM, Json)
- Updated HalPagingMgr to use PageStore instead of NE_PAGE_STORE
- Boot time now prints cycles since start; triggered fs_init_nefs() earlier during HAL init
- Prep for extended MBCI and master structure support in COREBOOT_LINEAR_EXEC
- Numerous cleanups across DMA, NewKit, and Json parsing to prep for extended patching and block-level bootstrap

This lays groundwork for richer NetBoot infrastructure in NeKernel and aligns naming and structure conventions across subsystems.

Signed-off-by: Amlal El Mahrouss &lt;amlal@nekernel.org&gt;
</content>
</entry>
<entry>
<title>firmware/netboot: final refactors regarding netboot.</title>
<updated>2025-03-31T20:02:54+00:00</updated>
<author>
<name>Amlal El Mahrouss</name>
<email>amlal@nekernel.org</email>
</author>
<published>2025-03-31T20:02:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nekernel.org/cgit/NeKernel/commit/?id=fd288fed29eff48503abf842676085701e04c38d'/>
<id>urn:sha1:fd288fed29eff48503abf842676085701e04c38d</id>
<content type='text'>
Signed-off-by: Amlal El Mahrouss &lt;amlal@nekernel.org&gt;
</content>
</entry>
<entry>
<title>meta/repository: fix capitalization on my name 'El' instead of 'EL'.</title>
<updated>2025-03-31T05:06:00+00:00</updated>
<author>
<name>Amlal El Mahrouss</name>
<email>amlal@nekernel.org</email>
</author>
<published>2025-03-31T05:06:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nekernel.org/cgit/NeKernel/commit/?id=2bcba69b77946c54ab1ede311787520acd56460a'/>
<id>urn:sha1:2bcba69b77946c54ab1ede311787520acd56460a</id>
<content type='text'>
Signed-off-by: Amlal El Mahrouss &lt;amlal@nekernel.org&gt;
</content>
</entry>
<entry>
<title>ahci: fix: report success when ahci is detected.</title>
<updated>2025-03-28T19:19:56+00:00</updated>
<author>
<name>Amlal El Mahrouss</name>
<email>amlal@nekernel.org</email>
</author>
<published>2025-03-28T19:19:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nekernel.org/cgit/NeKernel/commit/?id=15493aad092a3e2f0ebacc4fe38d40de02ea67de'/>
<id>urn:sha1:15493aad092a3e2f0ebacc4fe38d40de02ea67de</id>
<content type='text'>
mbci: reintroduce NeKernel's MBCI.
cfkit: rename: CFKit -&gt; CF
libuser: rename ErrKind to ErrRef.
coregfx: fix last unconsistent things about the module.

Signed-off-by: Amlal El Mahrouss &lt;amlal@nekernel.org&gt;
</content>
</entry>
<entry>
<title>kernel: breaking: Change namespace from NeOS to Kernel.</title>
<updated>2025-03-28T18:57:33+00:00</updated>
<author>
<name>Amlal El Mahrouss</name>
<email>amlal@nekernel.org</email>
</author>
<published>2025-03-28T18:57:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nekernel.org/cgit/NeKernel/commit/?id=ba7b3ed69cd24970a28b72c54982735cd120e663'/>
<id>urn:sha1:ba7b3ed69cd24970a28b72c54982735cd120e663</id>
<content type='text'>
sched: Fix redundancy in NeKernel's user scheduler macros, refactored
the other files using the redundant macros too.

part one of a series of commit for NeKernel.

Signed-off-by: Amlal El Mahrouss &lt;amlal@nekernel.org&gt;
</content>
</entry>
</feed>
