2019-08-17 11:55:58 +02:00
|
|
|
openrisc_ss = ss.source_set()
|
2020-11-27 23:51:27 +01:00
|
|
|
openrisc_ss.add(files('cputimer.c'))
|
2022-05-27 18:42:34 +02:00
|
|
|
openrisc_ss.add(files('boot.c'))
|
2022-02-09 22:39:12 +01:00
|
|
|
openrisc_ss.add(when: 'CONFIG_OR1K_SIM', if_true: [files('openrisc_sim.c'), fdt])
|
2022-05-20 15:38:13 +02:00
|
|
|
openrisc_ss.add(when: 'CONFIG_OR1K_VIRT', if_true: [files('virt.c'), fdt])
|
2019-08-17 11:55:58 +02:00
|
|
|
|
|
|
|
hw_arch += {'openrisc': openrisc_ss}
|