Commit 0d8a743b authored by Jakob Moser's avatar Jakob Moser
Browse files

Modify paths to hard drive files

parent 2878a096
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -15,6 +15,10 @@
* `static/lib/jslinux/js/jslinux.js`
  * Modified path to VM (call of `loadScript` function)
  * Modified paths to distro images
* `static/lib/jslinux/distros/busybox/root-riscv64.cfg`
  * Modified path to hard drive file
* `static/lib/jslinux/distros/busybox/root-x86.cfg`
  * Modified path to hard drive file

## Bee icon

+1 −1
Original line number Diff line number Diff line
@@ -6,6 +6,6 @@
    bios: "bbl64.bin",
    kernel: "kernel-riscv64.bin",
    cmdline: "console=hvc0 root=/dev/vda rw",
    drive0: { file: "root-riscv64/blk.txt" },
    drive0: { file: "lib/jslinux/distros/busybox/root-riscv64/blk.txt" },
    eth0: { driver: "user" },
}
+1 −1
Original line number Diff line number Diff line
@@ -5,6 +5,6 @@
    memory_size: 128,
    kernel: "kernel-x86.bin",
    cmdline: "loglevel=3 console=hvc0 root=/dev/vda rw",
    drive0: { file: "root-x86/blk.txt" },
    drive0: { file: "lib/jslinux/distros/busybox/root-x86/blk.txt" },
    eth0: { driver: "user" },
}