Changes in / [6ea5e7a:3c8b0a8] in mainline


Ignore:
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • contrib/qemu/build-from-scratch.sh

    r6ea5e7a r3c8b0a8  
    2929#
    3030
    31 VERSION=3.0.0
     31VERSION=3.1.0
    3232BASENAME=qemu-${VERSION}
    3333BASENAME_MASTER=qemu-master
  • kernel/genarch/src/multiboot/multiboot.c

    r6ea5e7a r3c8b0a8  
    5555        /*
    5656         * Find last occurence of '/' before 'end'. If found, place start at
    57          * next character. Otherwise, place start at beginning of buffer.
     57         * next character. Otherwise, place start at beginning of command line.
    5858         */
    5959        const char *cp = end;
    60         const char *start = buf;
     60        const char *start = cmd_line;
    6161
    6262        while (cp != start) {
  • uspace/app/sysinst/sysinst.c

    r6ea5e7a r3c8b0a8  
    6262 * in Grub notation).
    6363 */
    64 #define DEFAULT_DEV "devices/\\hw\\pci0\\00:01.0\\ata-c1\\d0"
     64#define DEFAULT_DEV "devices/\\hw\\sys\\00:01.0\\ata-c1\\d0"
    6565//#define DEFAULT_DEV "devices/\\hw\\pci0\\00:01.2\\uhci_rh\\usb01_a1\\mass-storage0\\l0"
    6666/** Volume label for the new file system */
Note: See TracChangeset for help on using the changeset viewer.