-
Notifications
You must be signed in to change notification settings - Fork 1
/
dom0.grub
1083 lines (1066 loc) · 51.5 KB
/
dom0.grub
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#
### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
set have_grubenv=true
load_env
fi
if [ "${next_entry}" ] ; then
set default="${next_entry}"
set next_entry=
save_env next_entry
set boot_once=true
else
set default="0"
fi
if [ x"${feature_menuentry_id}" = xy ]; then
menuentry_id_option="--id"
else
menuentry_id_option=""
fi
export menuentry_id_option
if [ "${prev_saved_entry}" ]; then
set saved_entry="${prev_saved_entry}"
save_env saved_entry
set prev_saved_entry=
save_env prev_saved_entry
set boot_once=true
fi
function savedefault {
if [ -z "${boot_once}" ]; then
saved_entry="${chosen}"
save_env saved_entry
fi
}
function recordfail {
set recordfail=1
if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
}
function load_video {
if [ x$feature_all_video_module = xy ]; then
insmod all_video
else
insmod efi_gop
insmod efi_uga
insmod ieee1275_fb
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
fi
}
if [ x$feature_default_font_path = xy ] ; then
font=unicode
else
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
font="/usr/share/grub/unicode.pf2"
fi
if loadfont $font ; then
set gfxmode=auto
load_video
insmod gfxterm
set locale_dir=$prefix/locale
set lang=zh_CN
insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
set timeout=-1
else
if [ x$feature_timeout_style = xy ] ; then
set timeout_style=hidden
set timeout=5
# Fallback hidden-timeout code in case the timeout_style feature is
# unavailable.
elif sleep --interruptible 5 ; then
set timeout=0
fi
fi
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
if background_color 44,0,30,0; then
clear
fi
### END /etc/grub.d/05_debian_theme ###
### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
set gfxpayload="${1}"
if [ "${1}" = "keep" ]; then
set vt_handoff=vt.handoff=7
else
set vt_handoff=
fi
}
if [ "${recordfail}" != 1 ]; then
if [ -e ${prefix}/gfxblacklist.txt ]; then
if hwmatch ${prefix}/gfxblacklist.txt 3; then
if [ ${match} = 0 ]; then
set linux_gfx_mode=keep
else
set linux_gfx_mode=text
fi
else
set linux_gfx_mode=text
fi
else
set linux_gfx_mode=keep
fi
else
set linux_gfx_mode=text
fi
export linux_gfx_mode
menuentry 'Xen-VGT 3.18.0-rc7' --class ubuntu --class gnu-linux --class gnu --class os {
insmod part_msdos insmod ext2 set root='(hd1,msdos1)' search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
multiboot /boot/xen-vgt3.gz dom0_mem=4096M dom0_max_vcpus=4 loglvl=all guest_loglvl=all com1=115200,8n1 console=com1
conring_size=4M noreboot
module /boot/vmlinuz-3.18.0-rc7-vgt+ root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 rw rd_NO_LUKS rd_NO_LVM LANG=en_US.UTF-8 rd_NO_MD SYSFONT=latarcyrheb-sun16 rhgb crashkernel=auto KEYBOARDTYPE=pc KEYTABLE=us rd_NO_DM loglevel=7 console=tty0 console=hvc0 consoleblank=0 log_buf_len=4M xen_vgt.hvm_boot_foreground=1 i915.vgt_debug=0 i915.enable_ppgtt=0
module /boot/initrd.img-3.18.0-rc7-vgt+
}
menuentry 'Xen-VGT 3.18.0-rc7x' --class ubuntu --class gnu-linux --class gnu --class os {
insmod part_msdos insmod ext2 set root='(hd1,msdos1)' search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
multiboot /boot/xen-vgt2.gz dom0_mem=4096M dom0_max_vcpus=4 loglvl=all guest_loglvl=all com1=115200,8n1 console=com1
conring_size=4M noreboot
module /boot/vmlinuz-3.18.0-rc7-vgtx+ root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 rw rd_NO_LUKS rd_NO_LVM LANG=en_US.UTF-8 rd_NO_MD SYSFONT=latarcyrheb-sun16 rhgb crashkernel=auto KEYBOARDTYPE=pc KEYTABLE=us rd_NO_DM loglevel=7 console=tty0 console=hvc0 consoleblank=0 log_buf_len=4M xen_vgt.hvm_boot_foreground=1 i915.vgt_debug=0 i915.enable_ppgtt=0
module /boot/initrd.img-3.18.0-rc7-vgtx+
}
menuentry 'Xen-VGT 3.14.1' --class ubuntu --class gnu-linux --class gnu --class os {
insmod part_msdos insmod ext2 set root='(hd1,msdos1)' search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
multiboot /boot/xen-vgt.gz dom0_mem=4096M dom0_max_vcpus=4 loglvl=all guest_loglvl=all com1=115200,8n1 console=com1
conring_size=4M noreboot
module /boot/vmlinuz-3.14.1-vgt+ root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 rw rd_NO_LUKS rd_NO_LVM LANG=en_US.UTF-8 rd_NO_MD SYSFONT=latarcyrheb-sun16 rhgb crashkernel=auto KEYBOARDTYPE=pc KEYTABLE=us rd_NO_DM loglevel=7 console=tty0 console=hvc0 consoleblank=0 log_buf_len=4M xen_vgt.hvm_boot_foreground=1 xen_vgt.debug=0 i915.i915_enable_ppgtt=0
module /boot/initrd.img-3.14.1-vgt+
}
menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
linux /boot/vmlinuz-3.18.0-rc7-vgt+ root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.18.0-rc7-vgt+
}
submenu 'Ubuntu 高级选项' $menuentry_id_option 'gnulinux-advanced-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
menuentry 'Ubuntu,Linux 3.18.0-rc7-vgt+' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.18.0-rc7-vgt+-advanced-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Linux 3.18.0-rc7-vgt+ ...'
linux /boot/vmlinuz-3.18.0-rc7-vgt+ root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro quiet splash $vt_handoff
echo '载入初始化内存盘...'
initrd /boot/initrd.img-3.18.0-rc7-vgt+
}
menuentry 'Ubuntu, with Linux 3.18.0-rc7-vgt+ (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.18.0-rc7-vgt+-recovery-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
recordfail
load_video
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Linux 3.18.0-rc7-vgt+ ...'
linux /boot/vmlinuz-3.18.0-rc7-vgt+ root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro recovery nomodeset
echo '载入初始化内存盘...'
initrd /boot/initrd.img-3.18.0-rc7-vgt+
}
menuentry 'Ubuntu,Linux 3.18.0-rc7-vgt+.old' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.18.0-rc7-vgt+.old-advanced-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Linux 3.18.0-rc7-vgt+.old ...'
linux /boot/vmlinuz-3.18.0-rc7-vgt+.old root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro quiet splash $vt_handoff
echo '载入初始化内存盘...'
initrd /boot/initrd.img-3.18.0-rc7-vgt+
}
menuentry 'Ubuntu, with Linux 3.18.0-rc7-vgt+.old (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.18.0-rc7-vgt+.old-recovery-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
recordfail
load_video
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Linux 3.18.0-rc7-vgt+.old ...'
linux /boot/vmlinuz-3.18.0-rc7-vgt+.old root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro recovery nomodeset
echo '载入初始化内存盘...'
initrd /boot/initrd.img-3.18.0-rc7-vgt+
}
menuentry 'Ubuntu,Linux 3.18.0-rc7-vgtx+' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.18.0-rc7-vgtx+-advanced-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Linux 3.18.0-rc7-vgtx+ ...'
linux /boot/vmlinuz-3.18.0-rc7-vgtx+ root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro quiet splash $vt_handoff
echo '载入初始化内存盘...'
initrd /boot/initrd.img-3.18.0-rc7-vgtx+
}
menuentry 'Ubuntu, with Linux 3.18.0-rc7-vgtx+ (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.18.0-rc7-vgtx+-recovery-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
recordfail
load_video
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Linux 3.18.0-rc7-vgtx+ ...'
linux /boot/vmlinuz-3.18.0-rc7-vgtx+ root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro recovery nomodeset
echo '载入初始化内存盘...'
initrd /boot/initrd.img-3.18.0-rc7-vgtx+
}
menuentry 'Ubuntu,Linux 3.14.1-vgt+' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.14.1-vgt+-advanced-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Linux 3.14.1-vgt+ ...'
linux /boot/vmlinuz-3.14.1-vgt+ root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro quiet splash $vt_handoff
echo '载入初始化内存盘...'
initrd /boot/initrd.img-3.14.1-vgt+
}
menuentry 'Ubuntu, with Linux 3.14.1-vgt+ (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.14.1-vgt+-recovery-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
recordfail
load_video
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Linux 3.14.1-vgt+ ...'
linux /boot/vmlinuz-3.14.1-vgt+ root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro recovery nomodeset
echo '载入初始化内存盘...'
initrd /boot/initrd.img-3.14.1-vgt+
}
menuentry 'Ubuntu,Linux 3.14.1-vgt+.old' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.14.1-vgt+.old-advanced-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Linux 3.14.1-vgt+.old ...'
linux /boot/vmlinuz-3.14.1-vgt+.old root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro quiet splash $vt_handoff
echo '载入初始化内存盘...'
initrd /boot/initrd.img-3.14.1-vgt+
}
menuentry 'Ubuntu, with Linux 3.14.1-vgt+.old (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.14.1-vgt+.old-recovery-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
recordfail
load_video
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Linux 3.14.1-vgt+.old ...'
linux /boot/vmlinuz-3.14.1-vgt+.old root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro recovery nomodeset
echo '载入初始化内存盘...'
initrd /boot/initrd.img-3.14.1-vgt+
}
menuentry 'Ubuntu,Linux 3.13.0-43-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-43-generic-advanced-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Linux 3.13.0-43-generic ...'
linux /boot/vmlinuz-3.13.0-43-generic root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro quiet splash $vt_handoff
echo '载入初始化内存盘...'
initrd /boot/initrd.img-3.13.0-43-generic
}
menuentry 'Ubuntu, with Linux 3.13.0-43-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-43-generic-recovery-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
recordfail
load_video
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Linux 3.13.0-43-generic ...'
linux /boot/vmlinuz-3.13.0-43-generic root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro recovery nomodeset
echo '载入初始化内存盘...'
initrd /boot/initrd.img-3.13.0-43-generic
}
menuentry 'Ubuntu,Linux 3.11.6-vgt+' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.11.6-vgt+-advanced-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Linux 3.11.6-vgt+ ...'
linux /boot/vmlinuz-3.11.6-vgt+ root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro quiet splash $vt_handoff
echo '载入初始化内存盘...'
initrd /boot/initrd.img-3.11.6-vgt+
}
menuentry 'Ubuntu, with Linux 3.11.6-vgt+ (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.11.6-vgt+-recovery-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
recordfail
load_video
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Linux 3.11.6-vgt+ ...'
linux /boot/vmlinuz-3.11.6-vgt+ root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro recovery nomodeset
echo '载入初始化内存盘...'
initrd /boot/initrd.img-3.11.6-vgt+
}
}
### END /etc/grub.d/10_linux ###
### BEGIN /etc/grub.d/20_linux_xen ###
menuentry 'Ubuntu GNU/Linux, with Xen hypervisor' --class ubuntu --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-simple-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Xen vgt ...'
if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
xen_rm_opts=
else
xen_rm_opts="no-real-mode edd=off"
fi
multiboot /boot/xen-vgt.gz placeholder ${xen_rm_opts}
echo '载入 Linux 3.18.0-rc7-vgt+ ...'
module /boot/vmlinuz-3.18.0-rc7-vgt+ placeholder root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro quiet splash
echo '载入初始化内存盘...'
module --nounzip /boot/initrd.img-3.18.0-rc7-vgt+
}
submenu 'Ubuntu GNU/Linux 高级选项 (使用 Xen 虚拟机管理程序)' $menuentry_id_option 'gnulinux-advanced-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
submenu 'Xen hypervisor, version vgt' $menuentry_id_option 'xen-hypervisor-vgt-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
menuentry 'Ubuntu GNU/Linux,Xen vgt 和 Linux 3.18.0-rc7-vgt+' --class ubuntu --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-3.18.0-rc7-vgt+-advanced-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Xen vgt ...'
if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
xen_rm_opts=
else
xen_rm_opts="no-real-mode edd=off"
fi
multiboot /boot/xen-vgt.gz placeholder ${xen_rm_opts}
echo '载入 Linux 3.18.0-rc7-vgt+ ...'
module /boot/vmlinuz-3.18.0-rc7-vgt+ placeholder root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro quiet splash
echo '载入初始化内存盘...'
module --nounzip /boot/initrd.img-3.18.0-rc7-vgt+
}
menuentry 'Ubuntu GNU/Linux, with Xen vgt and Linux 3.18.0-rc7-vgt+ (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-3.18.0-rc7-vgt+-recovery-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Xen vgt ...'
if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
xen_rm_opts=
else
xen_rm_opts="no-real-mode edd=off"
fi
multiboot /boot/xen-vgt.gz placeholder ${xen_rm_opts}
echo '载入 Linux 3.18.0-rc7-vgt+ ...'
module /boot/vmlinuz-3.18.0-rc7-vgt+ placeholder root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro single
echo '载入初始化内存盘...'
module --nounzip /boot/initrd.img-3.18.0-rc7-vgt+
}
menuentry 'Ubuntu GNU/Linux,Xen vgt 和 Linux 3.18.0-rc7-vgt+.old' --class ubuntu --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-3.18.0-rc7-vgt+.old-advanced-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Xen vgt ...'
if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
xen_rm_opts=
else
xen_rm_opts="no-real-mode edd=off"
fi
multiboot /boot/xen-vgt.gz placeholder ${xen_rm_opts}
echo '载入 Linux 3.18.0-rc7-vgt+.old ...'
module /boot/vmlinuz-3.18.0-rc7-vgt+.old placeholder root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro quiet splash
echo '载入初始化内存盘...'
module --nounzip /boot/initrd.img-3.18.0-rc7-vgt+
}
menuentry 'Ubuntu GNU/Linux, with Xen vgt and Linux 3.18.0-rc7-vgt+.old (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-3.18.0-rc7-vgt+.old-recovery-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Xen vgt ...'
if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
xen_rm_opts=
else
xen_rm_opts="no-real-mode edd=off"
fi
multiboot /boot/xen-vgt.gz placeholder ${xen_rm_opts}
echo '载入 Linux 3.18.0-rc7-vgt+.old ...'
module /boot/vmlinuz-3.18.0-rc7-vgt+.old placeholder root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro single
echo '载入初始化内存盘...'
module --nounzip /boot/initrd.img-3.18.0-rc7-vgt+
}
menuentry 'Ubuntu GNU/Linux,Xen vgt 和 Linux 3.18.0-rc7-vgtx+' --class ubuntu --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-3.18.0-rc7-vgtx+-advanced-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Xen vgt ...'
if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
xen_rm_opts=
else
xen_rm_opts="no-real-mode edd=off"
fi
multiboot /boot/xen-vgt.gz placeholder ${xen_rm_opts}
echo '载入 Linux 3.18.0-rc7-vgtx+ ...'
module /boot/vmlinuz-3.18.0-rc7-vgtx+ placeholder root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro quiet splash
echo '载入初始化内存盘...'
module --nounzip /boot/initrd.img-3.18.0-rc7-vgtx+
}
menuentry 'Ubuntu GNU/Linux, with Xen vgt and Linux 3.18.0-rc7-vgtx+ (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-3.18.0-rc7-vgtx+-recovery-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Xen vgt ...'
if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
xen_rm_opts=
else
xen_rm_opts="no-real-mode edd=off"
fi
multiboot /boot/xen-vgt.gz placeholder ${xen_rm_opts}
echo '载入 Linux 3.18.0-rc7-vgtx+ ...'
module /boot/vmlinuz-3.18.0-rc7-vgtx+ placeholder root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro single
echo '载入初始化内存盘...'
module --nounzip /boot/initrd.img-3.18.0-rc7-vgtx+
}
menuentry 'Ubuntu GNU/Linux,Xen vgt 和 Linux 3.14.1-vgt+' --class ubuntu --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-3.14.1-vgt+-advanced-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Xen vgt ...'
if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
xen_rm_opts=
else
xen_rm_opts="no-real-mode edd=off"
fi
multiboot /boot/xen-vgt.gz placeholder ${xen_rm_opts}
echo '载入 Linux 3.14.1-vgt+ ...'
module /boot/vmlinuz-3.14.1-vgt+ placeholder root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro quiet splash
echo '载入初始化内存盘...'
module --nounzip /boot/initrd.img-3.14.1-vgt+
}
menuentry 'Ubuntu GNU/Linux, with Xen vgt and Linux 3.14.1-vgt+ (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-3.14.1-vgt+-recovery-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Xen vgt ...'
if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
xen_rm_opts=
else
xen_rm_opts="no-real-mode edd=off"
fi
multiboot /boot/xen-vgt.gz placeholder ${xen_rm_opts}
echo '载入 Linux 3.14.1-vgt+ ...'
module /boot/vmlinuz-3.14.1-vgt+ placeholder root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro single
echo '载入初始化内存盘...'
module --nounzip /boot/initrd.img-3.14.1-vgt+
}
menuentry 'Ubuntu GNU/Linux,Xen vgt 和 Linux 3.14.1-vgt+.old' --class ubuntu --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-3.14.1-vgt+.old-advanced-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Xen vgt ...'
if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
xen_rm_opts=
else
xen_rm_opts="no-real-mode edd=off"
fi
multiboot /boot/xen-vgt.gz placeholder ${xen_rm_opts}
echo '载入 Linux 3.14.1-vgt+.old ...'
module /boot/vmlinuz-3.14.1-vgt+.old placeholder root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro quiet splash
echo '载入初始化内存盘...'
module --nounzip /boot/initrd.img-3.14.1-vgt+
}
menuentry 'Ubuntu GNU/Linux, with Xen vgt and Linux 3.14.1-vgt+.old (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-3.14.1-vgt+.old-recovery-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Xen vgt ...'
if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
xen_rm_opts=
else
xen_rm_opts="no-real-mode edd=off"
fi
multiboot /boot/xen-vgt.gz placeholder ${xen_rm_opts}
echo '载入 Linux 3.14.1-vgt+.old ...'
module /boot/vmlinuz-3.14.1-vgt+.old placeholder root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro single
echo '载入初始化内存盘...'
module --nounzip /boot/initrd.img-3.14.1-vgt+
}
menuentry 'Ubuntu GNU/Linux,Xen vgt 和 Linux 3.13.0-43-generic' --class ubuntu --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-3.13.0-43-generic-advanced-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Xen vgt ...'
if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
xen_rm_opts=
else
xen_rm_opts="no-real-mode edd=off"
fi
multiboot /boot/xen-vgt.gz placeholder ${xen_rm_opts}
echo '载入 Linux 3.13.0-43-generic ...'
module /boot/vmlinuz-3.13.0-43-generic placeholder root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro quiet splash
echo '载入初始化内存盘...'
module --nounzip /boot/initrd.img-3.13.0-43-generic
}
menuentry 'Ubuntu GNU/Linux, with Xen vgt and Linux 3.13.0-43-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-3.13.0-43-generic-recovery-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Xen vgt ...'
if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
xen_rm_opts=
else
xen_rm_opts="no-real-mode edd=off"
fi
multiboot /boot/xen-vgt.gz placeholder ${xen_rm_opts}
echo '载入 Linux 3.13.0-43-generic ...'
module /boot/vmlinuz-3.13.0-43-generic placeholder root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro single
echo '载入初始化内存盘...'
module --nounzip /boot/initrd.img-3.13.0-43-generic
}
menuentry 'Ubuntu GNU/Linux,Xen vgt 和 Linux 3.11.6-vgt+' --class ubuntu --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-3.11.6-vgt+-advanced-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Xen vgt ...'
if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
xen_rm_opts=
else
xen_rm_opts="no-real-mode edd=off"
fi
multiboot /boot/xen-vgt.gz placeholder ${xen_rm_opts}
echo '载入 Linux 3.11.6-vgt+ ...'
module /boot/vmlinuz-3.11.6-vgt+ placeholder root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro quiet splash
echo '载入初始化内存盘...'
module --nounzip /boot/initrd.img-3.11.6-vgt+
}
menuentry 'Ubuntu GNU/Linux, with Xen vgt and Linux 3.11.6-vgt+ (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-3.11.6-vgt+-recovery-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Xen vgt ...'
if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
xen_rm_opts=
else
xen_rm_opts="no-real-mode edd=off"
fi
multiboot /boot/xen-vgt.gz placeholder ${xen_rm_opts}
echo '载入 Linux 3.11.6-vgt+ ...'
module /boot/vmlinuz-3.11.6-vgt+ placeholder root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro single
echo '载入初始化内存盘...'
module --nounzip /boot/initrd.img-3.11.6-vgt+
}
}
submenu 'Xen hypervisor, version vgt3' $menuentry_id_option 'xen-hypervisor-vgt3-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
menuentry 'Ubuntu GNU/Linux,Xen vgt3 和 Linux 3.18.0-rc7-vgt+' --class ubuntu --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-3.18.0-rc7-vgt+-advanced-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Xen vgt3 ...'
if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
xen_rm_opts=
else
xen_rm_opts="no-real-mode edd=off"
fi
multiboot /boot/xen-vgt3.gz placeholder ${xen_rm_opts}
echo '载入 Linux 3.18.0-rc7-vgt+ ...'
module /boot/vmlinuz-3.18.0-rc7-vgt+ placeholder root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro quiet splash
echo '载入初始化内存盘...'
module --nounzip /boot/initrd.img-3.18.0-rc7-vgt+
}
menuentry 'Ubuntu GNU/Linux, with Xen vgt3 and Linux 3.18.0-rc7-vgt+ (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-3.18.0-rc7-vgt+-recovery-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Xen vgt3 ...'
if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
xen_rm_opts=
else
xen_rm_opts="no-real-mode edd=off"
fi
multiboot /boot/xen-vgt3.gz placeholder ${xen_rm_opts}
echo '载入 Linux 3.18.0-rc7-vgt+ ...'
module /boot/vmlinuz-3.18.0-rc7-vgt+ placeholder root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro single
echo '载入初始化内存盘...'
module --nounzip /boot/initrd.img-3.18.0-rc7-vgt+
}
menuentry 'Ubuntu GNU/Linux,Xen vgt3 和 Linux 3.18.0-rc7-vgt+.old' --class ubuntu --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-3.18.0-rc7-vgt+.old-advanced-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Xen vgt3 ...'
if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
xen_rm_opts=
else
xen_rm_opts="no-real-mode edd=off"
fi
multiboot /boot/xen-vgt3.gz placeholder ${xen_rm_opts}
echo '载入 Linux 3.18.0-rc7-vgt+.old ...'
module /boot/vmlinuz-3.18.0-rc7-vgt+.old placeholder root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro quiet splash
echo '载入初始化内存盘...'
module --nounzip /boot/initrd.img-3.18.0-rc7-vgt+
}
menuentry 'Ubuntu GNU/Linux, with Xen vgt3 and Linux 3.18.0-rc7-vgt+.old (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-3.18.0-rc7-vgt+.old-recovery-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Xen vgt3 ...'
if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
xen_rm_opts=
else
xen_rm_opts="no-real-mode edd=off"
fi
multiboot /boot/xen-vgt3.gz placeholder ${xen_rm_opts}
echo '载入 Linux 3.18.0-rc7-vgt+.old ...'
module /boot/vmlinuz-3.18.0-rc7-vgt+.old placeholder root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro single
echo '载入初始化内存盘...'
module --nounzip /boot/initrd.img-3.18.0-rc7-vgt+
}
menuentry 'Ubuntu GNU/Linux,Xen vgt3 和 Linux 3.18.0-rc7-vgtx+' --class ubuntu --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-3.18.0-rc7-vgtx+-advanced-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Xen vgt3 ...'
if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
xen_rm_opts=
else
xen_rm_opts="no-real-mode edd=off"
fi
multiboot /boot/xen-vgt3.gz placeholder ${xen_rm_opts}
echo '载入 Linux 3.18.0-rc7-vgtx+ ...'
module /boot/vmlinuz-3.18.0-rc7-vgtx+ placeholder root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro quiet splash
echo '载入初始化内存盘...'
module --nounzip /boot/initrd.img-3.18.0-rc7-vgtx+
}
menuentry 'Ubuntu GNU/Linux, with Xen vgt3 and Linux 3.18.0-rc7-vgtx+ (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-3.18.0-rc7-vgtx+-recovery-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Xen vgt3 ...'
if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
xen_rm_opts=
else
xen_rm_opts="no-real-mode edd=off"
fi
multiboot /boot/xen-vgt3.gz placeholder ${xen_rm_opts}
echo '载入 Linux 3.18.0-rc7-vgtx+ ...'
module /boot/vmlinuz-3.18.0-rc7-vgtx+ placeholder root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro single
echo '载入初始化内存盘...'
module --nounzip /boot/initrd.img-3.18.0-rc7-vgtx+
}
menuentry 'Ubuntu GNU/Linux,Xen vgt3 和 Linux 3.14.1-vgt+' --class ubuntu --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-3.14.1-vgt+-advanced-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Xen vgt3 ...'
if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
xen_rm_opts=
else
xen_rm_opts="no-real-mode edd=off"
fi
multiboot /boot/xen-vgt3.gz placeholder ${xen_rm_opts}
echo '载入 Linux 3.14.1-vgt+ ...'
module /boot/vmlinuz-3.14.1-vgt+ placeholder root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro quiet splash
echo '载入初始化内存盘...'
module --nounzip /boot/initrd.img-3.14.1-vgt+
}
menuentry 'Ubuntu GNU/Linux, with Xen vgt3 and Linux 3.14.1-vgt+ (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-3.14.1-vgt+-recovery-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Xen vgt3 ...'
if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
xen_rm_opts=
else
xen_rm_opts="no-real-mode edd=off"
fi
multiboot /boot/xen-vgt3.gz placeholder ${xen_rm_opts}
echo '载入 Linux 3.14.1-vgt+ ...'
module /boot/vmlinuz-3.14.1-vgt+ placeholder root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro single
echo '载入初始化内存盘...'
module --nounzip /boot/initrd.img-3.14.1-vgt+
}
menuentry 'Ubuntu GNU/Linux,Xen vgt3 和 Linux 3.14.1-vgt+.old' --class ubuntu --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-3.14.1-vgt+.old-advanced-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Xen vgt3 ...'
if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
xen_rm_opts=
else
xen_rm_opts="no-real-mode edd=off"
fi
multiboot /boot/xen-vgt3.gz placeholder ${xen_rm_opts}
echo '载入 Linux 3.14.1-vgt+.old ...'
module /boot/vmlinuz-3.14.1-vgt+.old placeholder root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro quiet splash
echo '载入初始化内存盘...'
module --nounzip /boot/initrd.img-3.14.1-vgt+
}
menuentry 'Ubuntu GNU/Linux, with Xen vgt3 and Linux 3.14.1-vgt+.old (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-3.14.1-vgt+.old-recovery-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Xen vgt3 ...'
if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
xen_rm_opts=
else
xen_rm_opts="no-real-mode edd=off"
fi
multiboot /boot/xen-vgt3.gz placeholder ${xen_rm_opts}
echo '载入 Linux 3.14.1-vgt+.old ...'
module /boot/vmlinuz-3.14.1-vgt+.old placeholder root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro single
echo '载入初始化内存盘...'
module --nounzip /boot/initrd.img-3.14.1-vgt+
}
menuentry 'Ubuntu GNU/Linux,Xen vgt3 和 Linux 3.13.0-43-generic' --class ubuntu --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-3.13.0-43-generic-advanced-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Xen vgt3 ...'
if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
xen_rm_opts=
else
xen_rm_opts="no-real-mode edd=off"
fi
multiboot /boot/xen-vgt3.gz placeholder ${xen_rm_opts}
echo '载入 Linux 3.13.0-43-generic ...'
module /boot/vmlinuz-3.13.0-43-generic placeholder root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro quiet splash
echo '载入初始化内存盘...'
module --nounzip /boot/initrd.img-3.13.0-43-generic
}
menuentry 'Ubuntu GNU/Linux, with Xen vgt3 and Linux 3.13.0-43-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-3.13.0-43-generic-recovery-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492
fi
echo '载入 Xen vgt3 ...'
if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
xen_rm_opts=
else
xen_rm_opts="no-real-mode edd=off"
fi
multiboot /boot/xen-vgt3.gz placeholder ${xen_rm_opts}
echo '载入 Linux 3.13.0-43-generic ...'
module /boot/vmlinuz-3.13.0-43-generic placeholder root=UUID=1b90a207-7fc8-4569-bf15-257fa6b9e492 ro single
echo '载入初始化内存盘...'
module --nounzip /boot/initrd.img-3.13.0-43-generic
}
menuentry 'Ubuntu GNU/Linux,Xen vgt3 和 Linux 3.11.6-vgt+' --class ubuntu --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-3.11.6-vgt+-advanced-1b90a207-7fc8-4569-bf15-257fa6b9e492' {
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 1b90a207-7fc8-4569-bf15-257fa6b9e492
else
search --no-floppy --fs-uuid --set=root 1b90a207-7fc8-4569-bf15-257fa6b9e492