2023-09-28 09:49:15 +02:00
|
|
|
system_ss.add(files('fw_cfg-interface.c'))
|
2023-06-13 15:33:47 +02:00
|
|
|
system_ss.add(files('fw_cfg.c'))
|
|
|
|
system_ss.add(when: 'CONFIG_CHRP_NVRAM', if_true: files('chrp_nvram.c'))
|
|
|
|
system_ss.add(when: 'CONFIG_DS1225Y', if_true: files('ds1225y.c'))
|
|
|
|
system_ss.add(when: 'CONFIG_NMC93XX_EEPROM', if_true: files('eeprom93xx.c'))
|
|
|
|
system_ss.add(when: 'CONFIG_AT24C', if_true: files('eeprom_at24c.c'))
|
|
|
|
system_ss.add(when: 'CONFIG_MAC_NVRAM', if_true: files('mac_nvram.c'))
|
|
|
|
system_ss.add(when: 'CONFIG_NPCM7XX', if_true: files('npcm7xx_otp.c'))
|
|
|
|
system_ss.add(when: 'CONFIG_NRF51_SOC', if_true: files('nrf51_nvm.c'))
|
|
|
|
system_ss.add(when: 'CONFIG_XLNX_EFUSE_CRC', if_true: files('xlnx-efuse-crc.c'))
|
|
|
|
system_ss.add(when: 'CONFIG_XLNX_EFUSE', if_true: files('xlnx-efuse.c'))
|
|
|
|
system_ss.add(when: 'CONFIG_XLNX_EFUSE_VERSAL', if_true: files(
|
2021-09-17 07:23:53 +02:00
|
|
|
'xlnx-versal-efuse-cache.c',
|
|
|
|
'xlnx-versal-efuse-ctrl.c'))
|
2023-06-13 15:33:47 +02:00
|
|
|
system_ss.add(when: 'CONFIG_XLNX_EFUSE_ZYNQMP', if_true: files(
|
2021-09-17 07:23:54 +02:00
|
|
|
'xlnx-zynqmp-efuse.c'))
|
2023-06-13 15:33:47 +02:00
|
|
|
system_ss.add(when: 'CONFIG_XLNX_BBRAM', if_true: files('xlnx-bbram.c'))
|
2019-08-16 15:35:29 +02:00
|
|
|
|
|
|
|
specific_ss.add(when: 'CONFIG_PSERIES', if_true: files('spapr_nvram.c'))
|
2023-12-18 16:02:35 +01:00
|
|
|
specific_ss.add(when: 'CONFIG_ACPI', if_true: files('fw_cfg-acpi.c'))
|