Revision 6f7e9aec vl.c

b/vl.c
2733 2733
           "-full-screen    start in full screen\n"
2734 2734
#ifdef TARGET_PPC
2735 2735
           "-prep           Simulate a PREP system (default is PowerMAC)\n"
2736
           "-g WxH[xDEPTH]  Set the initial VGA graphic mode\n"
2736
#endif
2737
#if defined(TARGET_PPC) || defined(TARGET_SPARC)
2738
           "-g WxH[xDEPTH]  Set the initial graphical resolution and depth\n"
2737 2739
#endif
2738 2740
           "\n"
2739 2741
           "Network options:\n"
......
2916 2918
#endif
2917 2919
#ifdef TARGET_PPC
2918 2920
    { "prep", 0, QEMU_OPTION_prep },
2921
#endif
2922
#if defined(TARGET_PPC) || defined(TARGET_SPARC)
2919 2923
    { "g", 1, QEMU_OPTION_g },
2920 2924
#endif
2921 2925
    { "localtime", 0, QEMU_OPTION_localtime },
......
3179 3183
            case QEMU_OPTION_boot:
3180 3184
                boot_device = optarg[0];
3181 3185
                if (boot_device != 'a' && 
3186
#ifdef TARGET_SPARC
3187
		    // Network boot
3188
		    boot_device != 'n' &&
3189
#endif
3182 3190
                    boot_device != 'c' && boot_device != 'd') {
3183 3191
                    fprintf(stderr, "qemu: invalid boot device '%c'\n", boot_device);
3184 3192
                    exit(1);

Also available in: Unified diff