mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-21 12:32:56 +01:00
@@ -61,7 +61,7 @@ nvme
|
||||
ping
|
||||
ping_nic_router
|
||||
nova
|
||||
platform_drv
|
||||
platform
|
||||
rtc
|
||||
rump_ext2
|
||||
sd_card_bench
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
proc binary_name_ld_lib_so { } { return "ld-fiasco.lib.so" }
|
||||
proc binary_name_core_a { } { return "core-fiasco.a" }
|
||||
proc binary_name_timer { } { return "fiasco_timer_drv" }
|
||||
proc binary_name_timer { } { return "fiasco_timer" }
|
||||
|
||||
proc kernel_files { } { return { fiasco sigma0-fiasco bootstrap-fiasco } }
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
proc binary_name_ld_lib_so { } { return "ld-foc.lib.so" }
|
||||
proc binary_name_ld_lib_so { } { return "ld-foc.lib.so" }
|
||||
proc binary_name_core_a { } { return "core-foc-[board].a" }
|
||||
proc binary_name_timer { } { return "foc_timer_drv" }
|
||||
proc binary_name_timer { } { return "foc_timer" }
|
||||
|
||||
proc kernel_files { } { return { foc sigma0-foc bootstrap-foc } }
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
proc binary_name_ld_lib_so { } { return "ld-hw.lib.so" }
|
||||
proc binary_name_core_a { } { return "core-hw.a" }
|
||||
proc binary_name_timer { } { return "hw_timer_drv" }
|
||||
proc binary_name_timer { } { return "hw_timer" }
|
||||
proc binary_name_image_elf { } { return "image-hw.elf" }
|
||||
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
proc binary_name_ld_lib_so { } { return "ld-linux.lib.so" }
|
||||
proc binary_name_core { } { return "core-linux" }
|
||||
proc binary_name_timer { } { return "linux_timer_drv" }
|
||||
proc binary_name_core { } { return "core-linux" }
|
||||
proc binary_name_timer { } { return "linux_timer" }
|
||||
|
||||
|
||||
##
|
||||
@@ -16,7 +16,7 @@ proc run_boot_dir {binaries} {
|
||||
set dst_binary "[kernel_specific_binary $binary]"
|
||||
if {$dst_binary == "core-linux"} { set dst_binary "core" }
|
||||
if {$dst_binary == "ld-linux.lib.so"} { set dst_binary "ld.lib.so" }
|
||||
if {$dst_binary == "linux_timer_drv"} { set dst_binary "timer" }
|
||||
if {$dst_binary == "linux_timer"} { set dst_binary "timer" }
|
||||
|
||||
if {[file exists $src_binary_path]} {
|
||||
exec ln -sf $src_binary_path [run_dir]/genode/$dst_binary
|
||||
|
||||
@@ -28,7 +28,7 @@ proc bender_intel_hwp_mode_option { } {
|
||||
|
||||
proc binary_name_ld_lib_so { } { return "ld-nova.lib.so" }
|
||||
proc binary_name_core_a { } { return "core-nova.a" }
|
||||
proc binary_name_timer { } { return "nova_timer_drv" }
|
||||
proc binary_name_timer { } { return "nova_timer" }
|
||||
|
||||
proc kernel_files { } { return hypervisor }
|
||||
proc kernel_output { } { return "serial" }
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
proc binary_name_ld_lib_so { } { return "ld-okl4.lib.so" }
|
||||
proc binary_name_core_a { } { return "core-okl4.a" }
|
||||
proc binary_name_timer { } { return "pit_timer_drv" }
|
||||
proc binary_name_timer { } { return "pit_timer" }
|
||||
|
||||
proc kernel_files { } { return okl4 }
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
proc binary_name_ld_lib_so { } { return "ld-pistachio.lib.so" }
|
||||
proc binary_name_core_a { } { return "core-pistachio.a" }
|
||||
proc binary_name_timer { } { return "pit_timer_drv" }
|
||||
proc binary_name_timer { } { return "pit_timer" }
|
||||
|
||||
proc kernel_files { } { return { pistachio sigma0-pistachio kickstart-pistachio } }
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
proc binary_name_ld_lib_so { } { return "ld-sel4.lib.so" }
|
||||
proc binary_name_core_a { } { return "core-sel4.a" }
|
||||
proc binary_name_timer { } {
|
||||
if {[have_board imx6q_sabrelite]} { return "imx6_timer_drv" }
|
||||
if {[have_board imx7d_sabre]} { return "imx7_timer_drv" }
|
||||
if {[have_board pc]} { return "pit_timer_drv" }
|
||||
if {[have_board imx6q_sabrelite]} { return "imx6_timer" }
|
||||
if {[have_board imx7d_sabre]} { return "imx7_timer" }
|
||||
if {[have_board pc]} { return "pit_timer" }
|
||||
puts "unknown platform - no timer driver"
|
||||
exit -1
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user