From: Alan Cox Date: Mon, 4 Feb 2019 00:38:35 +0000 (+0000) Subject: 68000: fix page size reporting X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=6ee8a110cdd0faec1e2294b679288a5aacbbfc02;p=FUZIX.git 68000: fix page size reporting --- diff --git a/Kernel/platform-atarist/config.h b/Kernel/platform-atarist/config.h index cfec7bac..04fc7953 100644 --- a/Kernel/platform-atarist/config.h +++ b/Kernel/platform-atarist/config.h @@ -11,7 +11,7 @@ /* 32bit with flat memory */ #define CONFIG_FLAT #define CONFIG_32BIT -#define CONFIG_BANKS 1 /* FIXME */ +#define CONFIG_BANKS (65536/512) #define CONFIG_USERMEM_DIRECT /* Video terminal, not a serial tty */ #define CONFIG_VT diff --git a/Kernel/platform-v68/config.h b/Kernel/platform-v68/config.h index d0a12fa2..1853f4a7 100644 --- a/Kernel/platform-v68/config.h +++ b/Kernel/platform-v68/config.h @@ -10,7 +10,7 @@ #undef CONFIG_MULTI #define CONFIG_SWAP_ONLY #define CONFIG_USERMEM_DIRECT -#define CONFIG_BANKS 1 +#define CONFIG_BANKS (65536/512) #define PROC_SIZE 128 /* 64K, 128 * 512 */ #define CONFIG_SPLIT_UDATA