summaryrefslogtreecommitdiffhomepage
path: root/dev/Boot/src/BootTextWriter.cc
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-03-20 20:30:18 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-03-20 20:30:18 +0100
commit1c43fb19cab6eb1121a6d41f4bbe180229a3ae9e (patch)
treeb69b6317a2e1ebeba7958024f9718e7ae705cee0 /dev/Boot/src/BootTextWriter.cc
parent1d07547776d6890c4b4115ddc265b35e68f87936 (diff)
Refactored BootKit and DiskImage framework, minor kernel fixes
- Refactored BootKit classes: - Renamed `BTextWriter` → `BootTextWriter` - Renamed `BFileReader` → `BootFileReader` - Improved consistency across `BootKit.h`, `BootThread.cc`, and related files. - Updated NetBoot module: - Standardized text writer usage. - Improved error handling for missing patches and EEPROM flash. - DiskImage framework improvements: - Introduced `DI_DISK_IMAGE` struct. - Added new `DIFormatDisk()` and `DIFormatNeFS()` functions. - Improved error handling and structure alignment. - Kernel enhancements: - Updated PE loader structures for better readability. - Renamed PE header fields for consistency. - Improved SwapDisk API structure (`SwapDiskHdr` → `SWAP_DISK_HEADER`). Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/Boot/src/BootTextWriter.cc')
-rw-r--r--dev/Boot/src/BootTextWriter.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/dev/Boot/src/BootTextWriter.cc b/dev/Boot/src/BootTextWriter.cc
index 5bebdb10..b58d3429 100644
--- a/dev/Boot/src/BootTextWriter.cc
+++ b/dev/Boot/src/BootTextWriter.cc
@@ -23,7 +23,7 @@
/**
@brief puts wrapper over EFI ConOut.
*/
-Boot::BTextWriter& Boot::BTextWriter::Write(const CharacterTypeUTF16* str)
+Boot::BootTextWriter& Boot::BootTextWriter::Write(const CharacterTypeUTF16* str)
{
#ifdef __DEBUG__
if (!str || *str == 0)
@@ -55,7 +55,7 @@ Boot::BTextWriter& Boot::BTextWriter::Write(const CharacterTypeUTF16* str)
/// @brief UTF-8 equivalent of Write (UTF-16).
/// @param str the input string.
-Boot::BTextWriter& Boot::BTextWriter::Write(const Char* str)
+Boot::BootTextWriter& Boot::BootTextWriter::Write(const Char* str)
{
#ifdef __DEBUG__
if (!str || *str == 0)
@@ -85,7 +85,7 @@ Boot::BTextWriter& Boot::BTextWriter::Write(const Char* str)
return *this;
}
-Boot::BTextWriter& Boot::BTextWriter::Write(const UChar* str)
+Boot::BootTextWriter& Boot::BootTextWriter::Write(const UChar* str)
{
#ifdef __DEBUG__
if (!str || *str == 0)
@@ -118,7 +118,7 @@ Boot::BTextWriter& Boot::BTextWriter::Write(const UChar* str)
/**
@brief putc wrapper over EFI ConOut.
*/
-Boot::BTextWriter& Boot::BTextWriter::WriteCharacter(CharacterTypeUTF16 c)
+Boot::BootTextWriter& Boot::BootTextWriter::WriteCharacter(CharacterTypeUTF16 c)
{
#ifdef __DEBUG__
EfiCharType str[2];
@@ -131,7 +131,7 @@ Boot::BTextWriter& Boot::BTextWriter::WriteCharacter(CharacterTypeUTF16 c)
return *this;
}
-Boot::BTextWriter& Boot::BTextWriter::Write(const Long& x)
+Boot::BootTextWriter& Boot::BootTextWriter::Write(const Long& x)
{
#ifdef __DEBUG__
this->_Write(x);
@@ -141,7 +141,7 @@ Boot::BTextWriter& Boot::BTextWriter::Write(const Long& x)
return *this;
}
-Boot::BTextWriter& Boot::BTextWriter::_Write(const Long& x)
+Boot::BootTextWriter& Boot::BootTextWriter::_Write(const Long& x)
{
#ifdef __DEBUG__
UInt64 y = (x > 0 ? x : -x) / 16;