parent
0c4c969fa4
commit
c5881dfcc9
@ -1,13 +0,0 @@
|
||||
diff --git a/repos/libports/ports/curl.port b/repos/libports/ports/curl.port
|
||||
index bf784c1d22..167f650d74 100644
|
||||
--- a/repos/libports/ports/curl.port
|
||||
+++ b/repos/libports/ports/curl.port
|
||||
@@ -2,7 +2,7 @@ LICENSE := MIT
|
||||
DOWNLOADS := curl.archive
|
||||
VERSION := 7.29.0
|
||||
|
||||
-URL(curl) := http://curl.haxx.se/download/curl-$(VERSION).tar.gz
|
||||
+URL(curl) := https://curl.se/download/archeology/curl-7.29.0.tar.gz
|
||||
SHA(curl) := 67dc5b952ac489191b62dbe95b18d336b821649f61404a280186c72e8cd0b9d6
|
||||
SIG(curl) := ${URL(curl)}.asc
|
||||
KEY(curl) := daniel@haxx.se
|
@ -1,43 +0,0 @@
|
||||
diff --git a/repos/os/src/test/pci/test.cc b/repos/os/src/test/pci/test.cc
|
||||
index c6d9e2012b..050de6136c 100644
|
||||
--- a/repos/os/src/test/pci/test.cc
|
||||
+++ b/repos/os/src/test/pci/test.cc
|
||||
@@ -92,4 +92,5 @@ void Component::construct(Genode::Env &env)
|
||||
pci.release_device(prev_device_cap);
|
||||
|
||||
log("--- Platform test finished ---");
|
||||
+ env.parent().exit(0);
|
||||
}
|
||||
commit 03a5f469313e9fdc9ee1135ebf0b167e4d3d3266
|
||||
Author: Emery Hemingway <ehmry@posteo.net>
|
||||
Date: Wed Oct 21 15:16:34 2020 +0200
|
||||
|
||||
test-pci: recognize VirtIO vendor IDs
|
||||
|
||||
diff --git a/repos/os/src/test/pci/test.cc b/repos/os/src/test/pci/test.cc
|
||||
index c6d9e2012b..9cc2a2ac4b 100644
|
||||
--- a/repos/os/src/test/pci/test.cc
|
||||
+++ b/repos/os/src/test/pci/test.cc
|
||||
@@ -19,7 +19,10 @@
|
||||
|
||||
using namespace Genode;
|
||||
|
||||
-enum { INTEL_VENDOR_ID = 0x8086 };
|
||||
+enum {
|
||||
+ INTEL_VENDOR_ID = 0x8086,
|
||||
+ VIRTIO_VENDOR_ID = 0x1af4,
|
||||
+};
|
||||
|
||||
|
||||
/**
|
||||
@@ -45,7 +48,9 @@ static void print_device_info(Platform::Device_capability device_cap)
|
||||
Hex(fun, Hex::OMIT_PREFIX), " "
|
||||
"class=", Hex(class_code), " "
|
||||
"vendor=", Hex(vendor_id), " ",
|
||||
- (vendor_id == INTEL_VENDOR_ID ? "(Intel)" : "(unknown)"),
|
||||
+ (vendor_id == INTEL_VENDOR_ID ? "(Intel)" :
|
||||
+ vendor_id == VIRTIO_VENDOR_ID ? "(VirtIO)" :
|
||||
+ "(unknown)"),
|
||||
" device=", Hex(device_id));
|
||||
|
||||
for (int resource_id = 0; resource_id < 6; resource_id++) {
|
Loading…
Reference in new issue