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