mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-18 02:40:08 +00:00
parent
8ecbc48211
commit
ee564125df
@ -25,7 +25,7 @@ import_from_depot [depot_user]/src/[base_src] \
|
||||
[depot_user]/src/acpi_drv \
|
||||
[depot_user]/src/dynamic_rom \
|
||||
[depot_user]/src/init \
|
||||
[depot_user]/src/ipxe_nic_drv \
|
||||
[depot_user]/src/pc_nic_drv \
|
||||
[depot_user]/src/nic_router \
|
||||
[depot_user]/src/pci_decode \
|
||||
[depot_user]/src/platform_drv \
|
||||
@ -85,7 +85,7 @@ install_config {
|
||||
</route>
|
||||
<config>
|
||||
<policy label_prefix="wifi_drv" info="yes"> <pci class="WIFI"/> </policy>
|
||||
<policy label_prefix="nic_drv"> <pci class="ETHERNET"/> </policy>
|
||||
<policy label_prefix="nic_drv" info="yes"> <pci class="ETHERNET"/> </policy>
|
||||
</config>
|
||||
</start>
|
||||
|
||||
@ -102,7 +102,7 @@ install_config {
|
||||
</start>
|
||||
|
||||
<start name="nic_drv" priority="-1" caps="120">
|
||||
<binary name="ipxe_nic_drv"/>
|
||||
<binary name="pc_nic_drv"/>
|
||||
<resource name="RAM" quantum="8M"/>
|
||||
<route>
|
||||
<service name="Uplink"> <child name="router"/> </service>
|
||||
|
@ -11,9 +11,6 @@
|
||||
# host's port 5555. Consequently, it cannot be executed on non-qemu test
|
||||
# environments (i.e., the test won't work with the Linux version of Genode).
|
||||
#
|
||||
# Please make sure to include a nic driver in your build configuration. E.g.,
|
||||
# on the x86 platform, you may enable the 'dde_ipxe' repository.
|
||||
#
|
||||
|
||||
#
|
||||
# TODO: Add support for Linux via user-level networking (using the
|
||||
|
@ -118,7 +118,7 @@ set boot_modules {
|
||||
vfs fs_rom nic_router
|
||||
posix.lib.so bash.tar coreutils.tar
|
||||
tcp_terminal vfs_lwip.lib.so vfs_pipe.lib.so vfs_import.lib.so
|
||||
ipxe_nic_drv report_rom event_filter
|
||||
pc_nic_drv report_rom event_filter
|
||||
test.bin template.bat
|
||||
}
|
||||
|
||||
@ -127,7 +127,7 @@ append boot_modules $vbox_file
|
||||
set config_of_app {
|
||||
|
||||
<start name="nic_drv" priority="-1">
|
||||
<binary name="ipxe_nic_drv"/>
|
||||
<binary name="pc_nic_drv"/>
|
||||
<resource name="RAM" quantum="8M"/>
|
||||
<route>
|
||||
<service name="Uplink"><child name="nic_router"/></service>
|
||||
|
@ -38,7 +38,7 @@ if {![info exists webcam_vflip]} {
|
||||
set build_components {
|
||||
server/nic_router
|
||||
server/event_filter
|
||||
drivers/nic
|
||||
drivers/nic/pc
|
||||
drivers/audio
|
||||
server/report_rom
|
||||
server/dynamic_rom
|
||||
@ -47,7 +47,7 @@ set build_components {
|
||||
set boot_modules {
|
||||
nic_router
|
||||
event_filter
|
||||
ipxe_nic_drv
|
||||
pc_nic_drv
|
||||
pci_audio_drv
|
||||
report_rom
|
||||
dynamic_rom
|
||||
@ -84,7 +84,7 @@ set config_of_app {
|
||||
needs to be enabled in the .vbox file (disabled by default)
|
||||
-->
|
||||
<start name="nic_drv" priority="-1">
|
||||
<binary name="ipxe_nic_drv"/>
|
||||
<binary name="pc_nic_drv"/>
|
||||
<resource name="RAM" quantum="8M" />
|
||||
<route>
|
||||
<service name="Uplink"> <child name="nic_router"/> </service>
|
||||
|
@ -98,7 +98,7 @@ append config {
|
||||
|
||||
append_if [expr $use_net] config {
|
||||
<start name="nic_drv" priority="-1">
|
||||
<binary name="ipxe_nic_drv"/>
|
||||
<binary name="pc_nic_drv"/>
|
||||
<resource name="RAM" quantum="8M"/>
|
||||
<route>
|
||||
<service name="Uplink"> <child name="nic_router"/> </service>
|
||||
@ -298,7 +298,7 @@ append boot_modules {
|
||||
libyuv.lib.so
|
||||
}
|
||||
|
||||
append_if [expr $use_net] boot_modules { ipxe_nic_drv }
|
||||
append_if [expr $use_net] boot_modules { pc_nic_drv }
|
||||
append_if [expr $use_net] boot_modules { nic_router }
|
||||
append_if [expr $use_serial] boot_modules { log_terminal }
|
||||
|
||||
|
@ -28,7 +28,7 @@ lappend depot_archives [depot_user]/src/libdrm
|
||||
lappend depot_archives [depot_user]/src/libyuv
|
||||
lappend depot_archives [depot_user]/src/vfs_gpu
|
||||
|
||||
lappend_if [expr $use_net] depot_archives [depot_user]/src/ipxe_nic_drv
|
||||
lappend_if [expr $use_net] depot_archives [depot_user]/src/pc_nic_drv
|
||||
lappend_if [expr $use_net] depot_archives [depot_user]/src/nic_router
|
||||
|
||||
import_from_depot $depot_archives
|
||||
@ -129,7 +129,7 @@ append_if [expr $use_net] config {
|
||||
</start>
|
||||
|
||||
<start name="nic_drv" priority="-1">
|
||||
<binary name="ipxe_nic_drv"/>
|
||||
<binary name="pc_nic_drv"/>
|
||||
<resource name="RAM" quantum="8M"/>
|
||||
<route>
|
||||
<service name="Platform"> <child name="drivers"/> </service>
|
||||
@ -295,7 +295,7 @@ set boot_modules {
|
||||
# platform-specific modules
|
||||
lappend_if [expr $use_top] boot_modules top
|
||||
|
||||
append_if [expr $use_net] boot_modules { ipxe_nic_drv }
|
||||
append_if [expr $use_net] boot_modules { pc_nic_drv }
|
||||
append_if [expr $use_net] boot_modules { nic_router }
|
||||
append_if [expr $use_serial] boot_modules { log_terminal }
|
||||
append_if [expr $use_overlay] boot_modules { overlay.vdi }
|
||||
|
@ -148,7 +148,7 @@ append config {
|
||||
<config>
|
||||
<policy label_prefix="ps2_drv"> <device name="ps2"/> </policy>
|
||||
<policy label_prefix="ahci_drv"> <pci class="AHCI"/> </policy>
|
||||
<policy label_prefix="nic_drv"> <pci class="ETHERNET"/> </policy>
|
||||
<policy label_prefix="nic_drv" info="yes"> <pci class="ETHERNET"/> </policy>
|
||||
<policy label_prefix="audio_drv">
|
||||
<pci class="AUDIO"/> <pci class="HDAUDIO"/> </policy>
|
||||
<policy label_prefix="fb_drv" info="yes"> <pci class="VGA"/> </policy>
|
||||
|
Loading…
Reference in New Issue
Block a user