From 019779daee62e3d73c1cf144e72e0f4d8a8861cc Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Fri, 14 Jun 2024 11:06:49 +0200 Subject: [PATCH] Use hex pci id's in initfs.toml This is consistent with the pcid configs for non-initfs drivers. --- initfs.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/initfs.toml b/initfs.toml index 62479eaee7..c2a22fbaff 100644 --- a/initfs.toml +++ b/initfs.toml @@ -25,13 +25,13 @@ command = ["nvmed"] name = "virtio-blk" class = 1 subclass = 0 -vendor = 6900 -device = 4097 +vendor = 0x1AF4 +device = 0x1001 command = ["virtio-blkd"] [[drivers]] name = "virtio-gpu" class = 3 -vendor = 6900 -device = 4176 +vendor = 0x1AF4 +device = 0x1050 command = ["virtio-gpud"]