diff options
Diffstat (limited to 'src/arch/x86/car.ld')
-rw-r--r-- | src/arch/x86/car.ld | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/arch/x86/car.ld b/src/arch/x86/car.ld index aa579c3c58..a9a281e3b1 100644 --- a/src/arch/x86/car.ld +++ b/src/arch/x86/car.ld @@ -44,6 +44,11 @@ * to reside in the migrated area (between _car_relocatable_data_start * and _car_relocatable_data_end). */ TIMESTAMP(., 0x100) +#if IS_ENABLED(CONFIG_DRIVERS_STORAGE) + _car_drivers_storage_start = .; + . += 256; + _car_drivers_storage_end = .; +#endif /* _car_global_start and _car_global_end provide symbols to per-stage * variables that are not shared like the timestamp and the pre-ram * cbmem console. This is useful for clearing this area on a per-stage |