ubuntuusers.de

boot-info-script

Autor:
samalbra
Datum:
18. Juni 2016 08:26
Code:
   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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
                Boot Info Script 0.61      [1 April 2012]


============================= Boot Info Summary: ===============================

 => No boot loader is installed in the MBR of /dev/sda.
 => Syslinux MBR (4.04 and higher) is installed in the MBR of /dev/sdb.

sda1: __________________________________________________________________________

    File system:       vfat
    Boot sector type:  FAT32
    Boot sector info:  No errors found in the Boot Parameter Block.
    Operating System:  
    Boot files:        /efi/Boot/bootx64.efi /efi/ubuntu/grubx64.efi 
                       /efi/ubuntu/MokManager.efi /efi/ubuntu/shimx64.efi

sda2: __________________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Mounting failed:   mount: wrong fs type, bad option, bad superblock on /dev/sda2,
       missing codepage or helper program, or other error
       In some cases useful info is found in syslog - try
       dmesg | tail  or so


sda3: __________________________________________________________________________

    File system:       ntfs
    Boot sector type:  Windows Vista/7: NTFS
    Boot sector info:  No errors found in the Boot Parameter Block.
    Operating System:  
    Boot files:        /grub2/grub.cfg /Windows/System32/winload.exe

sda4: __________________________________________________________________________

    File system:       ntfs
    Boot sector type:  Windows Vista/7: NTFS
    Boot sector info:  No errors found in the Boot Parameter Block.
    Operating System:  
    Boot files:        

sda5: __________________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Operating System:  Ubuntu 14.04.4 LTS
    Boot files:        /boot/grub/grub.cfg /etc/fstab

sda6: __________________________________________________________________________

    File system:       swap
    Boot sector type:  -
    Boot sector info: 

sdb1: __________________________________________________________________________

    File system:       vfat
    Boot sector type:  SYSLINUX 4.07 2013-07-25
    Boot sector info:  Syslinux looks at sector 61084 of /dev/sdb1 for its 
                       second stage. SYSLINUX is installed in the /uui 
                       directory. The integrity check of the ADV area failed. 
                       No errors found in the Boot Parameter Block.
    Operating System:  
    Boot files:        /boot/grub/grub.cfg /efi/BOOT/grubx64.efi

============================ Drive/Partition Info: =============================

Drive: sda _____________________________________________________________________

Disk /dev/sda: 750.2 GB, 750156374016 bytes
255 heads, 63 sectors/track, 91201 cylinders, total 1465149168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes

Partition  Boot  Start Sector    End Sector  # of Sectors  Id System

/dev/sda1                   1 1,465,149,167 1,465,149,167  ee GPT


GUID Partition Table detected.

Partition    Start Sector    End Sector  # of Sectors System
/dev/sda1           2,048     1,050,623     1,048,576 EFI System partition
/dev/sda2       1,050,624     1,312,767       262,144 Microsoft Reserved Partition (Windows)
/dev/sda3       1,312,768   204,929,023   203,616,256 Data partition (Windows/Linux)
/dev/sda4     204,929,024   205,850,623       921,600 Windows Recovery Environment (Windows)
/dev/sda5     205,850,624 1,452,814,335 1,246,963,712 Data partition (Linux)
/dev/sda6   1,452,814,336 1,465,147,391    12,333,056 Swap partition (Linux)

Drive: sdb _____________________________________________________________________

Disk /dev/sdb: 32.0 GB, 32015679488 bytes
255 heads, 63 sectors/track, 3892 cylinders, total 62530624 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes

Partition  Boot  Start Sector    End Sector  # of Sectors  Id System

/dev/sdb1    *          2,048    62,529,535    62,527,488   c W95 FAT32 (LBA)


"blkid" output: ________________________________________________________________

Device           UUID                                   TYPE       LABEL

/dev/loop0                                              squashfs   
/dev/sda1        C6F2-61D8                              vfat       
/dev/sda2        6405029d-00e2-4dcb-a59d-a80bfd77ad31   ext4       
/dev/sda3        6E808BAA808B76FD                       ntfs       
/dev/sda4        DA2A740D2A73E543                       ntfs       
/dev/sda5        6405029d-00e2-4dcb-a59d-a80bfd77ad31   ext4       
/dev/sda6        ce636f80-3d10-4b62-9564-e273330d9c5c   swap       
/dev/sdb1        14EA-3C2B                              vfat       UUI

================================ Mount points: =================================

Device           Mount_Point              Type       Options

/dev/loop0       /rofs                    squashfs   (ro,noatime)
/dev/sdb1        /cdrom                   vfat       (ro,noatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro)


============================= sda3/grub2/grub.cfg: =============================

--------------------------------------------------------------------------------
#
# 
#
# This is the basic default grub2.cfg file for Grub2Win 
# It contains just enough logic to boot Windows and automatically
# determines the correct boot type, XP or BCD, BIOS or EFI

# The grub menu type is - Scroll bar and progress circle
#
#
#  The Grub default boot OS is menu entry 0  -  Windows Boot Loader
#  The Grub default timeout is 10 seconds
#

set default=0
set lang=en
set pager=1
set icondir=$prefix/themes/icons
set locale_dir=$prefix/locale
set grub2win_procbits=32
if [ cpuid -l ] ; then set grub2win_procbits=64 ; fi
set grub2win_bootmode=BIOS
if [ $grub_platform = efi ]; then set grub2win_bootmode=EFI ; fi 
set gfxmode=1024x768,800x600,auto
set gfxpayload=text
set grub2win_parm=ascrollcir
set grub2win_efilevel=

set theme=$prefix/themes/grub2win/theme.ascrollcir

insmod png
loadfont $prefix/fonts/unicode.pf2
if [ $grub2win_bootmode = EFI ]; then
   set theme=$theme.efi.txt
   insmod efi_gop
   insmod efi_uga
else
   set theme=$theme.bios.txt
   insmod vbe
   insmod vga
fi
echo The Grub2Win partition address is $grub2part
terminal_output gfxterm
insmod gfxmenu


# start-grub2win-auto-menu-section  ***************************************************
#

#
#  Menu Item 0       Windows Boot Manager
#
#  ** Grub will boot this OS by default **
#
menuentry   'Windows Boot Manager'   --class windows   --class icon-windows  {

if [ $grub2win_bootmode = EFI ]; then
     set efibootmgr=/efi/Microsoft/Boot/bootmgfw.efi
     getbootpartition  file  $efibootmgr
     if [ $? = 0 ] ; then
	  echo Grub is now booting   Windows EFI Boot Manager
          echo Boot disk address is  $root
          echo The boot mode is      Windows EFI
          sleep -v -i 2
          chainloader $efibootmgr
     fi
else
     if [ -f (hd0,1)/ntldr ]; then
         set bootcontrol="XP boot.ini"
         set bootmodule=ntldr
	 set root=(hd0,1)	
     else
         set biosbootmgr=/bootmgr
         getbootpartition  file  $biosbootmgr
         set bootcontrol=BCD
         set bootmodule=bootmgr
     fi
     echo
     echo The Windows BIOS boot manager is at address ($root)
     echo
     echo The Windows boot control type is $bootcontrol
     echo
     sleep -v -i 5
     ntldr /$bootmodule
fi	
}

#
#  Menu Entry 1       Display boot information
#
menuentry   'Display boot information'   --class bootinfo   --class icon-bootinfo  {
clear
set pager=0
set grub2win_chosen='0  -   Windows Boot Manager'
set grub2win_lastbooted=no
export gfxmode
export grub2part
export grub2win_chosen 
export grub2win_lastbooted
export grub2win_version
export grub2win_procbits
export grub2win_bootmode
export grub2win_efiboot
export grub2win_efilevel
configfile $prefix/winsource/bootinfo.cfg
}

#
# end-grub2win-auto-menu-section     ***************************************************

# start-grub2win-getbootpartition-section  *********************************************
#
# The getbootpartition function searches for a partition
# If the first paramater is "label" it searches for a partition with the label name
# passed in the second parameter. Otherwise it searches for a file with the filename
# passed in the second parameter. 
# It then sets the root address to prepare for boot. 
# 
#
function getbootpartition {
     set pager=0
     set searchtype=$1
     set partsearch=$2
     if [ $searchtype = label ] ; then
          search.fs_label $partsearch rootaddress
     else 
          search.file     $partsearch rootaddress
     fi
     if [ $? = 0 ] ; then
          set root=($rootaddress)
          echo
          echo -n Grub is setting root to $root
          echo "  The boot partion $searchtype is $partsearch"
          echo
          return 0
     else 
          echo
          echo
          echo *** Grub did not find a boot partition with $searchtype $partsearch ***
          echo
          set pager=1
          sleep -v -i 10
          return 1
     fi
}
#
# end-grub2win-getbootpartition-section     ********************************************

# start-grub2win-user-section   ********************************************************
#
#
# end-grub2win-user-section     ********************************************************
--------------------------------------------------------------------------------

=================== sda3: Location of files loaded by Grub: ====================

           GiB - GB             File                                 Fragment(s)


=========================== sda5/boot/grub/grub.cfg: ===========================

--------------------------------------------------------------------------------
#
# 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_gpt
insmod ext2
set root='hd0,gpt2'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
else
  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
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=de_DE
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=30
else
  if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=hidden
    set timeout=0
  # Fallback hidden-timeout code in case the timeout_style feature is
  # unavailable.
  elif sleep --interruptible 0 ; 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 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
	recordfail
	load_video
	gfxmode $linux_gfx_mode
	insmod gzio
	insmod part_gpt
	insmod ext2
	set root='hd0,gpt2'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
	else
	  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
	fi
	linux	/boot/vmlinuz-3.13.0-88-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro  quiet splash $vt_handoff
	initrd	/boot/initrd.img-3.13.0-88-generic
}
submenu 'Erweiterte Optionen für Ubuntu' $menuentry_id_option 'gnulinux-advanced-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
	menuentry 'Ubuntu, mit Linux 3.13.0-88-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-88-generic-advanced-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-88-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-88-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro  quiet splash $vt_handoff
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-88-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-88-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-88-generic-recovery-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-88-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-88-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro recovery nomodeset 
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-88-generic
	}
	menuentry 'Ubuntu, mit Linux 3.13.0-87-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-87-generic-advanced-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-87-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-87-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro  quiet splash $vt_handoff
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-87-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-87-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-87-generic-recovery-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-87-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-87-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro recovery nomodeset 
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-87-generic
	}
	menuentry 'Ubuntu, mit Linux 3.13.0-86-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-86-generic-advanced-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-86-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-86-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro  quiet splash $vt_handoff
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-86-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-86-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-86-generic-recovery-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-86-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-86-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro recovery nomodeset 
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-86-generic
	}
	menuentry 'Ubuntu, mit Linux 3.13.0-85-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-85-generic-advanced-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-85-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-85-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro  quiet splash $vt_handoff
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-85-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-85-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-85-generic-recovery-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-85-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-85-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro recovery nomodeset 
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-85-generic
	}
	menuentry 'Ubuntu, mit Linux 3.13.0-83-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-83-generic-advanced-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-83-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-83-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro  quiet splash $vt_handoff
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-83-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-83-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-83-generic-recovery-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-83-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-83-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro recovery nomodeset 
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-83-generic
	}
	menuentry 'Ubuntu, mit Linux 3.13.0-79-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-79-generic-advanced-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-79-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-79-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro  quiet splash $vt_handoff
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-79-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-79-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-79-generic-recovery-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-79-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-79-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro recovery nomodeset 
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-79-generic
	}
	menuentry 'Ubuntu, mit Linux 3.13.0-77-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-77-generic-advanced-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-77-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-77-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro  quiet splash $vt_handoff
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-77-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-77-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-77-generic-recovery-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-77-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-77-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro recovery nomodeset 
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-77-generic
	}
	menuentry 'Ubuntu, mit Linux 3.13.0-76-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-76-generic-advanced-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-76-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-76-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro  quiet splash $vt_handoff
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-76-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-76-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-76-generic-recovery-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-76-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-76-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro recovery nomodeset 
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-76-generic
	}
	menuentry 'Ubuntu, mit Linux 3.13.0-74-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-74-generic-advanced-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-74-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-74-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro  quiet splash $vt_handoff
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-74-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-74-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-74-generic-recovery-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-74-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-74-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro recovery nomodeset 
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-74-generic
	}
	menuentry 'Ubuntu, mit Linux 3.13.0-71-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-71-generic-advanced-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-71-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-71-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro  quiet splash $vt_handoff
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-71-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-71-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-71-generic-recovery-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-71-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-71-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro recovery nomodeset 
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-71-generic
	}
	menuentry 'Ubuntu, mit Linux 3.13.0-68-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-68-generic-advanced-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-68-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-68-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro  quiet splash $vt_handoff
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-68-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-68-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-68-generic-recovery-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-68-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-68-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro recovery nomodeset 
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-68-generic
	}
	menuentry 'Ubuntu, mit Linux 3.13.0-67-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-67-generic-advanced-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-67-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-67-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro  quiet splash $vt_handoff
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-67-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-67-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-67-generic-recovery-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-67-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-67-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro recovery nomodeset 
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-67-generic
	}
	menuentry 'Ubuntu, mit Linux 3.13.0-66-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-66-generic-advanced-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-66-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-66-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro  quiet splash $vt_handoff
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-66-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-66-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-66-generic-recovery-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-66-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-66-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro recovery nomodeset 
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-66-generic
	}
	menuentry 'Ubuntu, mit Linux 3.13.0-65-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-65-generic-advanced-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-65-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-65-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro  quiet splash $vt_handoff
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-65-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-65-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-65-generic-recovery-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-65-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-65-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro recovery nomodeset 
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-65-generic
	}
	menuentry 'Ubuntu, mit Linux 3.13.0-63-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-63-generic-advanced-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-63-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-63-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro  quiet splash $vt_handoff
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-63-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-63-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-63-generic-recovery-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-63-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-63-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro recovery nomodeset 
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-63-generic
	}
	menuentry 'Ubuntu, mit Linux 3.13.0-62-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-62-generic-advanced-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-62-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-62-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro  quiet splash $vt_handoff
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-62-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-62-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-62-generic-recovery-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-62-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-62-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro recovery nomodeset 
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-62-generic
	}
	menuentry 'Ubuntu, mit Linux 3.13.0-61-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-61-generic-advanced-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-61-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-61-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro  quiet splash $vt_handoff
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-61-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-61-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-61-generic-recovery-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-61-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-61-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro recovery nomodeset 
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-61-generic
	}
	menuentry 'Ubuntu, mit Linux 3.13.0-59-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-59-generic-advanced-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-59-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-59-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro  quiet splash $vt_handoff
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-59-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-59-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-59-generic-recovery-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-59-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-59-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro recovery nomodeset 
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-59-generic
	}
	menuentry 'Ubuntu, mit Linux 3.13.0-58-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-58-generic-advanced-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-58-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-58-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro  quiet splash $vt_handoff
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-58-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-58-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-58-generic-recovery-6405029d-00e2-4dcb-a59d-a80bfd77ad31' {
		recordfail
		load_video
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6405029d-00e2-4dcb-a59d-a80bfd77ad31
		else
		  search --no-floppy --fs-uuid --set=root 6405029d-00e2-4dcb-a59d-a80bfd77ad31
		fi
		echo	'Linux 3.13.0-58-generic wird geladen …'
		linux	/boot/vmlinuz-3.13.0-58-generic.efi.signed root=UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 ro recovery nomodeset 
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13.0-58-generic
	}
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###

### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/20_memtest86+ ###
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/30_uefi-firmware ###
menuentry 'System setup' $menuentry_id_option 'uefi-firmware' {
	fwsetup
}
### END /etc/grub.d/30_uefi-firmware ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
--------------------------------------------------------------------------------

=============================== sda5/etc/fstab: ================================

--------------------------------------------------------------------------------
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda2 during installation
UUID=6405029d-00e2-4dcb-a59d-a80bfd77ad31 /               ext4    errors=remount-ro 0       1
# /boot/efi was on /dev/sda1 during installation
UUID=C6F2-61D8  /boot/efi       vfat    defaults        0       1
# swap was on /dev/sda3 during installation
UUID=ce636f80-3d10-4b62-9564-e273330d9c5c none            swap    sw              0       0
--------------------------------------------------------------------------------

=================== sda5: Location of files loaded by Grub: ====================

           GiB - GB             File                                 Fragment(s)


=========================== sdb1/boot/grub/grub.cfg: ===========================

--------------------------------------------------------------------------------

if loadfont /boot/grub/font.pf2 ; then
	set gfxmode=auto
	insmod efi_gop
	insmod efi_uga
	insmod gfxterm
	terminal_output gfxterm
fi

set menu_color_normal=white/black
set menu_color_highlight=black/light-gray

menuentry "Try Ubuntu without installing" {
	set gfxpayload=keep
	linux	/casper/vmlinuz.efi  file=/cdrom/preseed/ubuntu.seed cdrom-detect/try-usb=true noprompt floppy.allowed_drive_mask=0 ignore_uuid boot=casper quiet splash --
	initrd	/casper/initrd.lz
}
menuentry "Install Ubuntu" {
	set gfxpayload=keep
	linux	/casper/vmlinuz.efi  file=/cdrom/preseed/ubuntu.seed cdrom-detect/try-usb=true noprompt floppy.allowed_drive_mask=0 ignore_uuid boot=casper only-ubiquity quiet splash --
	initrd	/casper/initrd.lz
}
menuentry "OEM install (for manufacturers)" {
	set gfxpayload=keep
	linux	/casper/vmlinuz.efi  file=/cdrom/preseed/ubuntu.seed cdrom-detect/try-usb=true noprompt floppy.allowed_drive_mask=0 ignore_uuid boot=casper only-ubiquity quiet splash oem-config/enable=true --
	initrd	/casper/initrd.lz
}
menuentry "Check disc for defects" {
	set gfxpayload=keep
	linux	/casper/vmlinuz.efi  cdrom-detect/try-usb=true noprompt floppy.allowed_drive_mask=0 ignore_uuid boot=casper integrity-check quiet splash --
	initrd	/casper/initrd.lz
}
--------------------------------------------------------------------------------

=================== sdb1: Location of files loaded by Grub: ====================

           GiB - GB             File                                 Fragment(s)


=============================== StdErr Messages: ===============================

cat: /tmp/BootInfo-MAy4zD7a/Tmp_Log: No such file or directory
cat: /tmp/BootInfo-MAy4zD7a/Tmp_Log: No such file or directory
/home/ubuntu/boot-info-script/bootinfoscript: line 1646: [: 2.73495e+09: integer expression expected
cat: /tmp/BootInfo-MAy4zD7a/Tmp_Log: No such file or directory
  No volume groups found