Commit fa39779f authored by Jeffrey Lee's avatar Jeffrey Lee
Browse files

Allow SMP build switch to be overridden by components file

Detail:
  hdr/Options - The setting of the SMP switch can now be controlled by specifying the correct ASFLAGS, e.g. ASFLAGS="-PD \"SMP SETL {FALSE}\""
Admin:
  Untested


Version 6.08, 4.129.2.10. Tagged as 'Kernel-6_08-4_129_2_10'
parent 5eecd7d5
......@@ -13,11 +13,11 @@
GBLS Module_ComponentPath
Module_MajorVersion SETS "6.08"
Module_Version SETA 608
Module_MinorVersion SETS "4.129.2.9"
Module_MinorVersion SETS "4.129.2.10"
Module_Date SETS "07 Jul 2018"
Module_ApplicationDate SETS "07-Jul-18"
Module_ComponentName SETS "Kernel"
Module_ComponentPath SETS "castle/RiscOS/Sources/Kernel"
Module_FullVersion SETS "6.08 (4.129.2.9)"
Module_HelpVersion SETS "6.08 (07 Jul 2018) 4.129.2.9"
Module_FullVersion SETS "6.08 (4.129.2.10)"
Module_HelpVersion SETS "6.08 (07 Jul 2018) 4.129.2.10"
END
......@@ -5,12 +5,12 @@
*
*/
#define Module_MajorVersion_CMHG 6.08
#define Module_MinorVersion_CMHG 4.129.2.9
#define Module_MinorVersion_CMHG 4.129.2.10
#define Module_Date_CMHG 07 Jul 2018
#define Module_MajorVersion "6.08"
#define Module_Version 608
#define Module_MinorVersion "4.129.2.9"
#define Module_MinorVersion "4.129.2.10"
#define Module_Date "07 Jul 2018"
#define Module_ApplicationDate "07-Jul-18"
......@@ -18,6 +18,6 @@
#define Module_ComponentName "Kernel"
#define Module_ComponentPath "castle/RiscOS/Sources/Kernel"
#define Module_FullVersion "6.08 (4.129.2.9)"
#define Module_HelpVersion "6.08 (07 Jul 2018) 4.129.2.9"
#define Module_FullVersion "6.08 (4.129.2.10)"
#define Module_HelpVersion "6.08 (07 Jul 2018) 4.129.2.10"
#define Module_LibraryVersionInfo "6:8"
......@@ -186,8 +186,10 @@ CacheablePageTables SETL {TRUE} ; Use cacheable page tables wher
GBLL SyncPageTables
SyncPageTables SETL (MEMM_Type = "VMSAv6") :LOR: CacheablePageTables ; Any page table modification (specifically, overwriting faulting entries) requires synchronisation
[ :LNOT: :DEF: SMP
GBLL SMP
SMP SETL (MEMM_Type = "VMSAv6") :LAND: {TRUE} ; Enable SMP-related changes
]
GBLL UseNewFX0Error
UseNewFX0Error SETL ((Version :AND: 1) = 1) ; Whether *FX 0 should show the ROM link date instead of the UtilityModule date
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment