From f8dfe7e8b06056b0a1df8344f12766fc906d4a15 Mon Sep 17 00:00:00 2001 From: Greg Haerr Date: Thu, 7 Nov 2024 17:40:12 -0800 Subject: [PATCH] Increase DEF_SYSSEG to 0x1400 to eliminate tools/build warning message --- elks/include/linuxmt/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elks/include/linuxmt/config.h b/elks/include/linuxmt/config.h index d5d0bbece..16a28b342 100644 --- a/elks/include/linuxmt/config.h +++ b/elks/include/linuxmt/config.h @@ -99,7 +99,7 @@ /* Don't touch these, unless you really know what you are doing. */ #define DEF_INITSEG 0x0100 /* initial Image load address by boot code */ -#define DEF_SYSSEG 0x1300 /* address setup then copies kernel to, then REL_SYSSEG */ +#define DEF_SYSSEG 0x1400 /* address setup then copies kernel to, then REL_SYSSEG */ #define DEF_SETUPSEG DEF_INITSEG + 0x20 #define DEF_SYSMAX 0x2F00 /* maximum system size (=.text+.fartext+.data) */