From 7f941a7ac99bcc4afb7deba7f87ddef8629b7add Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Mon, 2 Mar 2026 15:06:58 +0100 Subject: chore: upstream fixes. Signed-off-by: Amlal El Mahrouss --- src/kernel/HALKit/ARM64/APM/APM+IO.cpp | 2 +- src/kernel/HALKit/ARM64/ApplicationProcessor.h | 2 +- src/kernel/HALKit/ARM64/CxxAbi.cpp | 2 +- src/kernel/HALKit/ARM64/HalACPIFactoryInterface.cpp | 2 +- src/kernel/HALKit/ARM64/HalApplicationProcessor.cpp | 2 +- src/kernel/HALKit/ARM64/HalCoreInterruptHandler.cpp | 2 +- src/kernel/HALKit/ARM64/HalDebugOutput.cpp | 2 +- src/kernel/HALKit/ARM64/HalKernelMain.cpp | 2 +- src/kernel/HALKit/ARM64/HalKernelPanic.cpp | 2 +- src/kernel/HALKit/ARM64/HalPagingMgr.cpp | 2 +- src/kernel/HALKit/ARM64/HalSchedulerCore.cpp | 2 +- src/kernel/HALKit/ARM64/HalSchedulerCorePrimitives.cpp | 2 +- src/kernel/HALKit/ARM64/HalTimer.cpp | 2 +- src/kernel/HALKit/ARM64/Paging.h | 2 +- src/kernel/HALKit/ARM64/Processor.h | 2 +- src/kernel/HALKit/ARM64/Storage/SCSI+Generic.cpp | 2 +- src/kernel/HALKit/ARM64/Storage/UFS+Generic.cpp | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) (limited to 'src/kernel/HALKit/ARM64') diff --git a/src/kernel/HALKit/ARM64/APM/APM+IO.cpp b/src/kernel/HALKit/ARM64/APM/APM+IO.cpp index 91b8255e..9c53f1c0 100644 --- a/src/kernel/HALKit/ARM64/APM/APM+IO.cpp +++ b/src/kernel/HALKit/ARM64/APM/APM+IO.cpp @@ -1,6 +1,6 @@ // Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org) // Licensed under the Apache License, Version 2.0 (see LICENSE file) -// Official repository: https://github.com/nekernel-org/nekernel +// Official repository: https://github.com/ne-foss-org/nekernel #include #include diff --git a/src/kernel/HALKit/ARM64/ApplicationProcessor.h b/src/kernel/HALKit/ARM64/ApplicationProcessor.h index 11903786..c4178ed1 100644 --- a/src/kernel/HALKit/ARM64/ApplicationProcessor.h +++ b/src/kernel/HALKit/ARM64/ApplicationProcessor.h @@ -1,6 +1,6 @@ // Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org) // Licensed under the Apache License, Version 2.0 (see LICENSE file) -// Official repository: https://github.com/nekernel-org/nekernel +// Official repository: https://github.com/ne-foss-org/nekernel #ifndef HALKIT_APPLICATIONPROCESSOR_H #define HALKIT_APPLICATIONPROCESSOR_H diff --git a/src/kernel/HALKit/ARM64/CxxAbi.cpp b/src/kernel/HALKit/ARM64/CxxAbi.cpp index 7b19aa71..e68d8b14 100644 --- a/src/kernel/HALKit/ARM64/CxxAbi.cpp +++ b/src/kernel/HALKit/ARM64/CxxAbi.cpp @@ -1,6 +1,6 @@ // Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org) // Licensed under the Apache License, Version 2.0 (see LICENSE file) -// Official repository: https://github.com/nekernel-org/nekernel +// Official repository: https://github.com/ne-foss-org/nekernel #include #include diff --git a/src/kernel/HALKit/ARM64/HalACPIFactoryInterface.cpp b/src/kernel/HALKit/ARM64/HalACPIFactoryInterface.cpp index 544d1ee1..e99600a0 100644 --- a/src/kernel/HALKit/ARM64/HalACPIFactoryInterface.cpp +++ b/src/kernel/HALKit/ARM64/HalACPIFactoryInterface.cpp @@ -1,6 +1,6 @@ // Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org) // Licensed under the Apache License, Version 2.0 (see LICENSE file) -// Official repository: https://github.com/nekernel-org/nekernel +// Official repository: https://github.com/ne-foss-org/nekernel #include #include diff --git a/src/kernel/HALKit/ARM64/HalApplicationProcessor.cpp b/src/kernel/HALKit/ARM64/HalApplicationProcessor.cpp index 33921a56..93e4b08a 100644 --- a/src/kernel/HALKit/ARM64/HalApplicationProcessor.cpp +++ b/src/kernel/HALKit/ARM64/HalApplicationProcessor.cpp @@ -1,6 +1,6 @@ // Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org) // Licensed under the Apache License, Version 2.0 (see LICENSE file) -// Official repository: https://github.com/nekernel-org/nekernel +// Official repository: https://github.com/ne-foss-org/nekernel #define GICD_BASE 0x08000000 #define GICC_BASE 0x08010000 diff --git a/src/kernel/HALKit/ARM64/HalCoreInterruptHandler.cpp b/src/kernel/HALKit/ARM64/HalCoreInterruptHandler.cpp index f0085e13..bd8ac8cc 100644 --- a/src/kernel/HALKit/ARM64/HalCoreInterruptHandler.cpp +++ b/src/kernel/HALKit/ARM64/HalCoreInterruptHandler.cpp @@ -1,6 +1,6 @@ // Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org) // Licensed under the Apache License, Version 2.0 (see LICENSE file) -// Official repository: https://github.com/nekernel-org/nekernel +// Official repository: https://github.com/ne-foss-org/nekernel #include #include diff --git a/src/kernel/HALKit/ARM64/HalDebugOutput.cpp b/src/kernel/HALKit/ARM64/HalDebugOutput.cpp index 4e47d38e..9acfd5b4 100644 --- a/src/kernel/HALKit/ARM64/HalDebugOutput.cpp +++ b/src/kernel/HALKit/ARM64/HalDebugOutput.cpp @@ -1,6 +1,6 @@ // Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org) // Licensed under the Apache License, Version 2.0 (see LICENSE file) -// Official repository: https://github.com/nekernel-org/nekernel +// Official repository: https://github.com/ne-foss-org/nekernel #include #include diff --git a/src/kernel/HALKit/ARM64/HalKernelMain.cpp b/src/kernel/HALKit/ARM64/HalKernelMain.cpp index 3a6e4085..15f7b983 100644 --- a/src/kernel/HALKit/ARM64/HalKernelMain.cpp +++ b/src/kernel/HALKit/ARM64/HalKernelMain.cpp @@ -1,6 +1,6 @@ // Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org) // Licensed under the Apache License, Version 2.0 (see LICENSE file) -// Official repository: https://github.com/nekernel-org/nekernel +// Official repository: https://github.com/ne-foss-org/nekernel #include #include diff --git a/src/kernel/HALKit/ARM64/HalKernelPanic.cpp b/src/kernel/HALKit/ARM64/HalKernelPanic.cpp index 59397611..e3edd2a0 100644 --- a/src/kernel/HALKit/ARM64/HalKernelPanic.cpp +++ b/src/kernel/HALKit/ARM64/HalKernelPanic.cpp @@ -1,6 +1,6 @@ // Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org) // Licensed under the Apache License, Version 2.0 (see LICENSE file) -// Official repository: https://github.com/nekernel-org/nekernel +// Official repository: https://github.com/ne-foss-org/nekernel #include #include diff --git a/src/kernel/HALKit/ARM64/HalPagingMgr.cpp b/src/kernel/HALKit/ARM64/HalPagingMgr.cpp index 0fe4d759..54901245 100644 --- a/src/kernel/HALKit/ARM64/HalPagingMgr.cpp +++ b/src/kernel/HALKit/ARM64/HalPagingMgr.cpp @@ -1,6 +1,6 @@ // Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org) // Licensed under the Apache License, Version 2.0 (see LICENSE file) -// Official repository: https://github.com/nekernel-org/nekernel +// Official repository: https://github.com/ne-foss-org/nekernel #include #include diff --git a/src/kernel/HALKit/ARM64/HalSchedulerCore.cpp b/src/kernel/HALKit/ARM64/HalSchedulerCore.cpp index ecf666e8..b99037aa 100644 --- a/src/kernel/HALKit/ARM64/HalSchedulerCore.cpp +++ b/src/kernel/HALKit/ARM64/HalSchedulerCore.cpp @@ -1,6 +1,6 @@ // Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org) // Licensed under the Apache License, Version 2.0 (see LICENSE file) -// Official repository: https://github.com/nekernel-org/nekernel +// Official repository: https://github.com/ne-foss-org/nekernel #include diff --git a/src/kernel/HALKit/ARM64/HalSchedulerCorePrimitives.cpp b/src/kernel/HALKit/ARM64/HalSchedulerCorePrimitives.cpp index 960dbc6d..a607f7db 100644 --- a/src/kernel/HALKit/ARM64/HalSchedulerCorePrimitives.cpp +++ b/src/kernel/HALKit/ARM64/HalSchedulerCorePrimitives.cpp @@ -1,6 +1,6 @@ // Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org) // Licensed under the Apache License, Version 2.0 (see LICENSE file) -// Official repository: https://github.com/nekernel-org/nekernel +// Official repository: https://github.com/ne-foss-org/nekernel #include #include diff --git a/src/kernel/HALKit/ARM64/HalTimer.cpp b/src/kernel/HALKit/ARM64/HalTimer.cpp index 3084838d..d3d50fe0 100644 --- a/src/kernel/HALKit/ARM64/HalTimer.cpp +++ b/src/kernel/HALKit/ARM64/HalTimer.cpp @@ -1,6 +1,6 @@ // Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org) // Licensed under the Apache License, Version 2.0 (see LICENSE file) -// Official repository: https://github.com/nekernel-org/nekernel +// Official repository: https://github.com/ne-foss-org/nekernel #include #include \ No newline at end of file diff --git a/src/kernel/HALKit/ARM64/Paging.h b/src/kernel/HALKit/ARM64/Paging.h index 8dedf65f..1984a9f2 100644 --- a/src/kernel/HALKit/ARM64/Paging.h +++ b/src/kernel/HALKit/ARM64/Paging.h @@ -1,6 +1,6 @@ // Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org) // Licensed under the Apache License, Version 2.0 (see LICENSE file) -// Official repository: https://github.com/nekernel-org/nekernel +// Official repository: https://github.com/ne-foss-org/nekernel #ifndef HALKIT_PAGING_H #define HALKIT_PAGING_H diff --git a/src/kernel/HALKit/ARM64/Processor.h b/src/kernel/HALKit/ARM64/Processor.h index ca69fc19..b2c98beb 100644 --- a/src/kernel/HALKit/ARM64/Processor.h +++ b/src/kernel/HALKit/ARM64/Processor.h @@ -1,6 +1,6 @@ // Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org) // Licensed under the Apache License, Version 2.0 (see LICENSE file) -// Official repository: https://github.com/nekernel-org/nekernel +// Official repository: https://github.com/ne-foss-org/nekernel #ifndef HALKIT_PROCESSOR_H #define HALKIT_PROCESSOR_H diff --git a/src/kernel/HALKit/ARM64/Storage/SCSI+Generic.cpp b/src/kernel/HALKit/ARM64/Storage/SCSI+Generic.cpp index f73946d7..d92a470f 100644 --- a/src/kernel/HALKit/ARM64/Storage/SCSI+Generic.cpp +++ b/src/kernel/HALKit/ARM64/Storage/SCSI+Generic.cpp @@ -1,6 +1,6 @@ // Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org) // Licensed under the Apache License, Version 2.0 (see LICENSE file) -// Official repository: https://github.com/nekernel-org/nekernel +// Official repository: https://github.com/ne-foss-org/nekernel #include diff --git a/src/kernel/HALKit/ARM64/Storage/UFS+Generic.cpp b/src/kernel/HALKit/ARM64/Storage/UFS+Generic.cpp index ba8d285b..6c2c319f 100644 --- a/src/kernel/HALKit/ARM64/Storage/UFS+Generic.cpp +++ b/src/kernel/HALKit/ARM64/Storage/UFS+Generic.cpp @@ -1,3 +1,3 @@ // Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org) // Licensed under the Apache License, Version 2.0 (see LICENSE file) -// Official repository: https://github.com/nekernel-org/nekernel +// Official repository: https://github.com/ne-foss-org/nekernel -- cgit v1.2.3