Bartosz Rempuszewski
Bartosz Rempuszewski
According to properties format documentation https://docs.oracle.com/javase/6/docs/api/java/util/Properties.html this should be loaded as one property: ``` fruits apple, banana, pear, \ cantaloupe, watermelon, \ kiwi, mango ``` but instead it is loaded...
### Description I would like to use [buildroot](https://github.com/buildroot/buildroot) to build linux kernel + rootfs and use it for renode board. ### Usage example ``` I followed some hints from https://bootlin.com/pub/conferences/2013/kernel-recipes/rootfs-kernel-developer/rootfs-kernel-developer.pdf...
### Description I think there is a bug in Virtqueue implementation: https://github.com/renode/renode-infrastructure/blob/b83aa9b46e518171f6c061cfe4fd6a5cfa5c734e/src/Emulator/Main/Storage/VirtIO/Virtqueue.cs#L140 in `public void WriteVirtqueueUsed(int chainFirstIndex, bool noInterruptOnUsed)` The code saves "bytes processed": `parent.SystemBus.WriteDoubleWord(ringAddress + (ulong)UsedRing.Length, (uint)BytesProcessed);` But according...