summaryrefslogtreecommitdiffhomepage
path: root/NewKernel/NewBoot/Source
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-05-08 23:45:45 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-05-08 23:45:45 +0200
commita874e9cc98df994178d55996943fe81799c61d2f (patch)
tree26f50c2f94b8269b6dfbd4d38a6ed38d359eb118 /NewKernel/NewBoot/Source
parent0341a0f8747d94355f510a1e94fe2f43103b636e (diff)
MHR-23: :boom:, refactor.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'NewKernel/NewBoot/Source')
-rw-r--r--NewKernel/NewBoot/Source/BootloaderRsrc.rsrc4
-rw-r--r--NewKernel/NewBoot/Source/HEL/AMD64/BootAHCI.cxx4
-rw-r--r--NewKernel/NewBoot/Source/HEL/AMD64/BootATA.cxx4
-rw-r--r--NewKernel/NewBoot/Source/HEL/AMD64/BootFileReader.cxx2
-rw-r--r--NewKernel/NewBoot/Source/HEL/AMD64/BootMain.cxx4
-rw-r--r--NewKernel/NewBoot/Source/HEL/AMD64/BootPlatform.cxx2
-rw-r--r--NewKernel/NewBoot/Source/HEL/AMD64/BootString.cxx2
-rw-r--r--NewKernel/NewBoot/Source/HEL/AMD64/BootTextWriter.cxx2
-rw-r--r--NewKernel/NewBoot/Source/HEL/AMD64/New+Delete.cxx2
-rw-r--r--NewKernel/NewBoot/Source/HEL/AMD64/Support.cxx2
-rw-r--r--NewKernel/NewBoot/Source/HEL/POWER/CoreBootStartup.S2
-rw-r--r--NewKernel/NewBoot/Source/HEL/RISCV/BootRISCV.S2
-rw-r--r--NewKernel/NewBoot/Source/Root/SplashScreen.fmt2
-rw-r--r--NewKernel/NewBoot/Source/makefile2
14 files changed, 18 insertions, 18 deletions
diff --git a/NewKernel/NewBoot/Source/BootloaderRsrc.rsrc b/NewKernel/NewBoot/Source/BootloaderRsrc.rsrc
index e8d89e9a..1564ade9 100644
--- a/NewKernel/NewBoot/Source/BootloaderRsrc.rsrc
+++ b/NewKernel/NewBoot/Source/BootloaderRsrc.rsrc
@@ -10,11 +10,11 @@ BEGIN
BEGIN
BLOCK "080904E4"
BEGIN
- VALUE "CompanyName", "Mahrouss-Logic"
+ VALUE "CompanyName", "SoftwareLabs"
VALUE "FileDescription", "New OS multi-platform bootloader."
VALUE "FileVersion", BOOTLOADER_VERSION
VALUE "InternalName", "NewBoot"
- VALUE "LegalCopyright", "Copyright Mahrouss-Logic, all rights reserved."
+ VALUE "LegalCopyright", "Copyright SoftwareLabs, all rights reserved."
VALUE "OriginalFilename", "NewBoot.exe"
VALUE "ProductName", "NewBoot"
VALUE "ProductVersion", BOOTLOADER_VERSION
diff --git a/NewKernel/NewBoot/Source/HEL/AMD64/BootAHCI.cxx b/NewKernel/NewBoot/Source/HEL/AMD64/BootAHCI.cxx
index a99b8a56..6676f660 100644
--- a/NewKernel/NewBoot/Source/HEL/AMD64/BootAHCI.cxx
+++ b/NewKernel/NewBoot/Source/HEL/AMD64/BootAHCI.cxx
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
------------------------------------------- */
@@ -11,7 +11,7 @@
* @version 0.1
* @date 2024-02-02
*
- * @copyright Copyright (c) Mahrouss Logic
+ * @copyright Copyright (c) SoftwareLabs
*
*/
diff --git a/NewKernel/NewBoot/Source/HEL/AMD64/BootATA.cxx b/NewKernel/NewBoot/Source/HEL/AMD64/BootATA.cxx
index a5bd9809..499596ca 100644
--- a/NewKernel/NewBoot/Source/HEL/AMD64/BootATA.cxx
+++ b/NewKernel/NewBoot/Source/HEL/AMD64/BootATA.cxx
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
------------------------------------------- */
@@ -11,7 +11,7 @@
* @version 0.1
* @date 2024-02-02
*
- * @copyright Copyright (c) Mahrouss Logic
+ * @copyright Copyright (c) SoftwareLabs
*
*/
diff --git a/NewKernel/NewBoot/Source/HEL/AMD64/BootFileReader.cxx b/NewKernel/NewBoot/Source/HEL/AMD64/BootFileReader.cxx
index 39c18821..61adc4f3 100644
--- a/NewKernel/NewBoot/Source/HEL/AMD64/BootFileReader.cxx
+++ b/NewKernel/NewBoot/Source/HEL/AMD64/BootFileReader.cxx
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
File: FileReader.cxx
Purpose: New Boot FileReader,
diff --git a/NewKernel/NewBoot/Source/HEL/AMD64/BootMain.cxx b/NewKernel/NewBoot/Source/HEL/AMD64/BootMain.cxx
index ebde06e8..f422b661 100644
--- a/NewKernel/NewBoot/Source/HEL/AMD64/BootMain.cxx
+++ b/NewKernel/NewBoot/Source/HEL/AMD64/BootMain.cxx
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
------------------------------------------- */
@@ -68,7 +68,7 @@ EFI_EXTERN_C EFI_API Int Main(EfiHandlePtr ImageHandle,
/// Splash screen stuff
- writer.Write(L"Mahrouss-Logic (R) New Boot: ")
+ writer.Write(L"SoftwareLabs (R) New Boot: ")
.Write(BVersionString::Shared());
writer.Write(L"\rNew Boot: Firmware Vendor: ")
diff --git a/NewKernel/NewBoot/Source/HEL/AMD64/BootPlatform.cxx b/NewKernel/NewBoot/Source/HEL/AMD64/BootPlatform.cxx
index 1b8576a9..9d125ec6 100644
--- a/NewKernel/NewBoot/Source/HEL/AMD64/BootPlatform.cxx
+++ b/NewKernel/NewBoot/Source/HEL/AMD64/BootPlatform.cxx
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
------------------------------------------- */
diff --git a/NewKernel/NewBoot/Source/HEL/AMD64/BootString.cxx b/NewKernel/NewBoot/Source/HEL/AMD64/BootString.cxx
index 34e16737..a93943cf 100644
--- a/NewKernel/NewBoot/Source/HEL/AMD64/BootString.cxx
+++ b/NewKernel/NewBoot/Source/HEL/AMD64/BootString.cxx
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
File: String.cxx
Purpose: NewBoot string library
diff --git a/NewKernel/NewBoot/Source/HEL/AMD64/BootTextWriter.cxx b/NewKernel/NewBoot/Source/HEL/AMD64/BootTextWriter.cxx
index fcb2154f..30c328ad 100644
--- a/NewKernel/NewBoot/Source/HEL/AMD64/BootTextWriter.cxx
+++ b/NewKernel/NewBoot/Source/HEL/AMD64/BootTextWriter.cxx
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
File: String.cxx
Purpose: NewBoot string library
diff --git a/NewKernel/NewBoot/Source/HEL/AMD64/New+Delete.cxx b/NewKernel/NewBoot/Source/HEL/AMD64/New+Delete.cxx
index 25aaec1c..3316ac1d 100644
--- a/NewKernel/NewBoot/Source/HEL/AMD64/New+Delete.cxx
+++ b/NewKernel/NewBoot/Source/HEL/AMD64/New+Delete.cxx
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
------------------------------------------- */
diff --git a/NewKernel/NewBoot/Source/HEL/AMD64/Support.cxx b/NewKernel/NewBoot/Source/HEL/AMD64/Support.cxx
index 65fb6b48..12c136f8 100644
--- a/NewKernel/NewBoot/Source/HEL/AMD64/Support.cxx
+++ b/NewKernel/NewBoot/Source/HEL/AMD64/Support.cxx
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
------------------------------------------- */
diff --git a/NewKernel/NewBoot/Source/HEL/POWER/CoreBootStartup.S b/NewKernel/NewBoot/Source/HEL/POWER/CoreBootStartup.S
index 41fc6ae2..f8ff99d7 100644
--- a/NewKernel/NewBoot/Source/HEL/POWER/CoreBootStartup.S
+++ b/NewKernel/NewBoot/Source/HEL/POWER/CoreBootStartup.S
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
------------------------------------------- */
diff --git a/NewKernel/NewBoot/Source/HEL/RISCV/BootRISCV.S b/NewKernel/NewBoot/Source/HEL/RISCV/BootRISCV.S
index 87b87bab..7a7e7db0 100644
--- a/NewKernel/NewBoot/Source/HEL/RISCV/BootRISCV.S
+++ b/NewKernel/NewBoot/Source/HEL/RISCV/BootRISCV.S
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
------------------------------------------- */
diff --git a/NewKernel/NewBoot/Source/Root/SplashScreen.fmt b/NewKernel/NewBoot/Source/Root/SplashScreen.fmt
index 6ac6486e..863d7b62 100644
--- a/NewKernel/NewBoot/Source/Root/SplashScreen.fmt
+++ b/NewKernel/NewBoot/Source/Root/SplashScreen.fmt
@@ -3,5 +3,5 @@ Welcome to NeWS.
Brought to you by: Amlal EL Mahrouss.
* NewBoot, NewKernel: Amlal EL Mahrouss.
This copy can boot directly to NewKernel (Unified System).
-Copyright Mahrouss-Logic, all rights reserved.
+Copyright SoftwareLabs, all rights reserved.
==================================================================
diff --git a/NewKernel/NewBoot/Source/makefile b/NewKernel/NewBoot/Source/makefile
index 13c4885d..7cb535f3 100644
--- a/NewKernel/NewBoot/Source/makefile
+++ b/NewKernel/NewBoot/Source/makefile
@@ -1,5 +1,5 @@
##################################################
-# (C) Mahrouss Logic, all rights reserved.
+# (C) SoftwareLabs, all rights reserved.
# This is the bootloader makefile.
##################################################