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