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
1214
1215
1216
1217 | + setup_verbose=--verbose
+ efi_quiet=-q
+ [ -z ]
+ bootdir=/boot
+ [ -n ]
+ echo /boot/grub
+ sed s,//*,/,g
+ grubdir=/boot/grub
+ device_map=/boot/grub/device.map
+ [ x86_64-efi = i386-pc ]
+ [ x86_64-efi = sparc64-ieee1275 ]
+ set /usr/bin/grub-mkimage dummy
+ test -f /usr/bin/grub-mkimage
+ :
+ [ xefi = xefi ]
+ efidir=
+ test -d /boot/efi
+ test -n
+ test -n
+ test -n
+ efidir=/boot/grub
+ efi_distributor=
+ efi_file=grub.efi
+ mkdir -p /boot/grub
+ test no = yes
+ test -f /boot/grub/device.map
+ test -f /boot/grub/acpi.mod
+ basename /boot/grub/acpi.mod
+ [ acpi.mod != menu.lst ]
+ rm -f /boot/grub/acpi.mod
+ test -f /boot/grub/adler32.mod
+ basename /boot/grub/adler32.mod
+ [ adler32.mod != menu.lst ]
+ rm -f /boot/grub/adler32.mod
+ test -f /boot/grub/affs.mod
+ basename /boot/grub/affs.mod
+ [ affs.mod != menu.lst ]
+ rm -f /boot/grub/affs.mod
+ test -f /boot/grub/afs.mod
+ basename /boot/grub/afs.mod
+ [ afs.mod != menu.lst ]
+ rm -f /boot/grub/afs.mod
+ test -f /boot/grub/afs_be.mod
+ basename /boot/grub/afs_be.mod
+ [ afs_be.mod != menu.lst ]
+ rm -f /boot/grub/afs_be.mod
+ test -f /boot/grub/aout.mod
+ basename /boot/grub/aout.mod
+ [ aout.mod != menu.lst ]
+ rm -f /boot/grub/aout.mod
+ test -f /boot/grub/appleldr.mod
+ basename /boot/grub/appleldr.mod
+ [ appleldr.mod != menu.lst ]
+ rm -f /boot/grub/appleldr.mod
+ test -f /boot/grub/at_keyboard.mod
+ basename /boot/grub/at_keyboard.mod
+ [ at_keyboard.mod != menu.lst ]
+ rm -f /boot/grub/at_keyboard.mod
+ test -f /boot/grub/ata.mod
+ basename /boot/grub/ata.mod
+ [ ata.mod != menu.lst ]
+ rm -f /boot/grub/ata.mod
+ test -f /boot/grub/ata_pthru.mod
+ basename /boot/grub/ata_pthru.mod
+ [ ata_pthru.mod != menu.lst ]
+ rm -f /boot/grub/ata_pthru.mod
+ test -f /boot/grub/befs.mod
+ basename /boot/grub/befs.mod
+ [ befs.mod != menu.lst ]
+ rm -f /boot/grub/befs.mod
+ test -f /boot/grub/befs_be.mod
+ basename /boot/grub/befs_be.mod
+ [ befs_be.mod != menu.lst ]
+ rm -f /boot/grub/befs_be.mod
+ test -f /boot/grub/bitmap.mod
+ basename /boot/grub/bitmap.mod
+ [ bitmap.mod != menu.lst ]
+ rm -f /boot/grub/bitmap.mod
+ test -f /boot/grub/bitmap_scale.mod
+ basename /boot/grub/bitmap_scale.mod
+ [ bitmap_scale.mod != menu.lst ]
+ rm -f /boot/grub/bitmap_scale.mod
+ test -f /boot/grub/blocklist.mod
+ basename /boot/grub/blocklist.mod
+ [ blocklist.mod != menu.lst ]
+ rm -f /boot/grub/blocklist.mod
+ test -f /boot/grub/boot.mod
+ basename /boot/grub/boot.mod
+ [ boot.mod != menu.lst ]
+ rm -f /boot/grub/boot.mod
+ test -f /boot/grub/bsd.mod
+ basename /boot/grub/bsd.mod
+ [ bsd.mod != menu.lst ]
+ rm -f /boot/grub/bsd.mod
+ test -f /boot/grub/btrfs.mod
+ basename /boot/grub/btrfs.mod
+ [ btrfs.mod != menu.lst ]
+ rm -f /boot/grub/btrfs.mod
+ test -f /boot/grub/bufio.mod
+ basename /boot/grub/bufio.mod
+ [ bufio.mod != menu.lst ]
+ rm -f /boot/grub/bufio.mod
+ test -f /boot/grub/cat.mod
+ basename /boot/grub/cat.mod
+ [ cat.mod != menu.lst ]
+ rm -f /boot/grub/cat.mod
+ test -f /boot/grub/chain.mod
+ basename /boot/grub/chain.mod
+ [ chain.mod != menu.lst ]
+ rm -f /boot/grub/chain.mod
+ test -f /boot/grub/cmp.mod
+ basename /boot/grub/cmp.mod
+ [ cmp.mod != menu.lst ]
+ rm -f /boot/grub/cmp.mod
+ test -f /boot/grub/configfile.mod
+ basename /boot/grub/configfile.mod
+ [ configfile.mod != menu.lst ]
+ rm -f /boot/grub/configfile.mod
+ test -f /boot/grub/cpio.mod
+ basename /boot/grub/cpio.mod
+ [ cpio.mod != menu.lst ]
+ rm -f /boot/grub/cpio.mod
+ test -f /boot/grub/cpuid.mod
+ basename /boot/grub/cpuid.mod
+ [ cpuid.mod != menu.lst ]
+ rm -f /boot/grub/cpuid.mod
+ test -f /boot/grub/crypto.mod
+ basename /boot/grub/crypto.mod
+ [ crypto.mod != menu.lst ]
+ rm -f /boot/grub/crypto.mod
+ test -f /boot/grub/cs5536.mod
+ basename /boot/grub/cs5536.mod
+ [ cs5536.mod != menu.lst ]
+ rm -f /boot/grub/cs5536.mod
+ test -f /boot/grub/date.mod
+ basename /boot/grub/date.mod
+ [ date.mod != menu.lst ]
+ rm -f /boot/grub/date.mod
+ test -f /boot/grub/datehook.mod
+ basename /boot/grub/datehook.mod
+ [ datehook.mod != menu.lst ]
+ rm -f /boot/grub/datehook.mod
+ test -f /boot/grub/datetime.mod
+ basename /boot/grub/datetime.mod
+ [ datetime.mod != menu.lst ]
+ rm -f /boot/grub/datetime.mod
+ test -f /boot/grub/dm_nv.mod
+ basename /boot/grub/dm_nv.mod
+ [ dm_nv.mod != menu.lst ]
+ rm -f /boot/grub/dm_nv.mod
+ test -f /boot/grub/echo.mod
+ basename /boot/grub/echo.mod
+ [ echo.mod != menu.lst ]
+ rm -f /boot/grub/echo.mod
+ test -f /boot/grub/efi_gop.mod
+ basename /boot/grub/efi_gop.mod
+ [ efi_gop.mod != menu.lst ]
+ rm -f /boot/grub/efi_gop.mod
+ test -f /boot/grub/efi_uga.mod
+ basename /boot/grub/efi_uga.mod
+ [ efi_uga.mod != menu.lst ]
+ rm -f /boot/grub/efi_uga.mod
+ test -f /boot/grub/efifwsetup.mod
+ basename /boot/grub/efifwsetup.mod
+ [ efifwsetup.mod != menu.lst ]
+ rm -f /boot/grub/efifwsetup.mod
+ test -f /boot/grub/elf.mod
+ basename /boot/grub/elf.mod
+ [ elf.mod != menu.lst ]
+ rm -f /boot/grub/elf.mod
+ test -f /boot/grub/example_functional_test.mod
+ basename /boot/grub/example_functional_test.mod
+ [ example_functional_test.mod != menu.lst ]
+ rm -f /boot/grub/example_functional_test.mod
+ test -f /boot/grub/ext2.mod
+ basename /boot/grub/ext2.mod
+ [ ext2.mod != menu.lst ]
+ rm -f /boot/grub/ext2.mod
+ test -f /boot/grub/extcmd.mod
+ basename /boot/grub/extcmd.mod
+ [ extcmd.mod != menu.lst ]
+ rm -f /boot/grub/extcmd.mod
+ test -f /boot/grub/fat.mod
+ basename /boot/grub/fat.mod
+ [ fat.mod != menu.lst ]
+ rm -f /boot/grub/fat.mod
+ test -f /boot/grub/fixvideo.mod
+ basename /boot/grub/fixvideo.mod
+ [ fixvideo.mod != menu.lst ]
+ rm -f /boot/grub/fixvideo.mod
+ test -f /boot/grub/font.mod
+ basename /boot/grub/font.mod
+ [ font.mod != menu.lst ]
+ rm -f /boot/grub/font.mod
+ test -f /boot/grub/fshelp.mod
+ basename /boot/grub/fshelp.mod
+ [ fshelp.mod != menu.lst ]
+ rm -f /boot/grub/fshelp.mod
+ test -f /boot/grub/functional_test.mod
+ basename /boot/grub/functional_test.mod
+ [ functional_test.mod != menu.lst ]
+ rm -f /boot/grub/functional_test.mod
+ test -f /boot/grub/gcry_arcfour.mod
+ basename /boot/grub/gcry_arcfour.mod
+ [ gcry_arcfour.mod != menu.lst ]
+ rm -f /boot/grub/gcry_arcfour.mod
+ test -f /boot/grub/gcry_blowfish.mod
+ basename /boot/grub/gcry_blowfish.mod
+ [ gcry_blowfish.mod != menu.lst ]
+ rm -f /boot/grub/gcry_blowfish.mod
+ test -f /boot/grub/gcry_camellia.mod
+ basename /boot/grub/gcry_camellia.mod
+ [ gcry_camellia.mod != menu.lst ]
+ rm -f /boot/grub/gcry_camellia.mod
+ test -f /boot/grub/gcry_cast5.mod
+ basename /boot/grub/gcry_cast5.mod
+ [ gcry_cast5.mod != menu.lst ]
+ rm -f /boot/grub/gcry_cast5.mod
+ test -f /boot/grub/gcry_crc.mod
+ basename /boot/grub/gcry_crc.mod
+ [ gcry_crc.mod != menu.lst ]
+ rm -f /boot/grub/gcry_crc.mod
+ test -f /boot/grub/gcry_des.mod
+ basename /boot/grub/gcry_des.mod
+ [ gcry_des.mod != menu.lst ]
+ rm -f /boot/grub/gcry_des.mod
+ test -f /boot/grub/gcry_md4.mod
+ basename /boot/grub/gcry_md4.mod
+ [ gcry_md4.mod != menu.lst ]
+ rm -f /boot/grub/gcry_md4.mod
+ test -f /boot/grub/gcry_md5.mod
+ basename /boot/grub/gcry_md5.mod
+ [ gcry_md5.mod != menu.lst ]
+ rm -f /boot/grub/gcry_md5.mod
+ test -f /boot/grub/gcry_rfc2268.mod
+ basename /boot/grub/gcry_rfc2268.mod
+ [ gcry_rfc2268.mod != menu.lst ]
+ rm -f /boot/grub/gcry_rfc2268.mod
+ test -f /boot/grub/gcry_rijndael.mod
+ basename /boot/grub/gcry_rijndael.mod
+ [ gcry_rijndael.mod != menu.lst ]
+ rm -f /boot/grub/gcry_rijndael.mod
+ test -f /boot/grub/gcry_rmd160.mod
+ basename /boot/grub/gcry_rmd160.mod
+ [ gcry_rmd160.mod != menu.lst ]
+ rm -f /boot/grub/gcry_rmd160.mod
+ test -f /boot/grub/gcry_seed.mod
+ basename /boot/grub/gcry_seed.mod
+ [ gcry_seed.mod != menu.lst ]
+ rm -f /boot/grub/gcry_seed.mod
+ test -f /boot/grub/gcry_serpent.mod
+ basename /boot/grub/gcry_serpent.mod
+ [ gcry_serpent.mod != menu.lst ]
+ rm -f /boot/grub/gcry_serpent.mod
+ test -f /boot/grub/gcry_sha1.mod
+ basename /boot/grub/gcry_sha1.mod
+ [ gcry_sha1.mod != menu.lst ]
+ rm -f /boot/grub/gcry_sha1.mod
+ test -f /boot/grub/gcry_sha256.mod
+ basename /boot/grub/gcry_sha256.mod
+ [ gcry_sha256.mod != menu.lst ]
+ rm -f /boot/grub/gcry_sha256.mod
+ test -f /boot/grub/gcry_sha512.mod
+ basename /boot/grub/gcry_sha512.mod
+ [ gcry_sha512.mod != menu.lst ]
+ rm -f /boot/grub/gcry_sha512.mod
+ test -f /boot/grub/gcry_tiger.mod
+ basename /boot/grub/gcry_tiger.mod
+ [ gcry_tiger.mod != menu.lst ]
+ rm -f /boot/grub/gcry_tiger.mod
+ test -f /boot/grub/gcry_twofish.mod
+ basename /boot/grub/gcry_twofish.mod
+ [ gcry_twofish.mod != menu.lst ]
+ rm -f /boot/grub/gcry_twofish.mod
+ test -f /boot/grub/gcry_whirlpool.mod
+ basename /boot/grub/gcry_whirlpool.mod
+ [ gcry_whirlpool.mod != menu.lst ]
+ rm -f /boot/grub/gcry_whirlpool.mod
+ test -f /boot/grub/gettext.mod
+ basename /boot/grub/gettext.mod
+ [ gettext.mod != menu.lst ]
+ rm -f /boot/grub/gettext.mod
+ test -f /boot/grub/gfxmenu.mod
+ basename /boot/grub/gfxmenu.mod
+ [ gfxmenu.mod != menu.lst ]
+ rm -f /boot/grub/gfxmenu.mod
+ test -f /boot/grub/gfxterm.mod
+ basename /boot/grub/gfxterm.mod
+ [ gfxterm.mod != menu.lst ]
+ rm -f /boot/grub/gfxterm.mod
+ test -f /boot/grub/gptsync.mod
+ basename /boot/grub/gptsync.mod
+ [ gptsync.mod != menu.lst ]
+ rm -f /boot/grub/gptsync.mod
+ test -f /boot/grub/gzio.mod
+ basename /boot/grub/gzio.mod
+ [ gzio.mod != menu.lst ]
+ rm -f /boot/grub/gzio.mod
+ test -f /boot/grub/halt.mod
+ basename /boot/grub/halt.mod
+ [ halt.mod != menu.lst ]
+ rm -f /boot/grub/halt.mod
+ test -f /boot/grub/hashsum.mod
+ basename /boot/grub/hashsum.mod
+ [ hashsum.mod != menu.lst ]
+ rm -f /boot/grub/hashsum.mod
+ test -f /boot/grub/hdparm.mod
+ basename /boot/grub/hdparm.mod
+ [ hdparm.mod != menu.lst ]
+ rm -f /boot/grub/hdparm.mod
+ test -f /boot/grub/hello.mod
+ basename /boot/grub/hello.mod
+ [ hello.mod != menu.lst ]
+ rm -f /boot/grub/hello.mod
+ test -f /boot/grub/help.mod
+ basename /boot/grub/help.mod
+ [ help.mod != menu.lst ]
+ rm -f /boot/grub/help.mod
+ test -f /boot/grub/hexdump.mod
+ basename /boot/grub/hexdump.mod
+ [ hexdump.mod != menu.lst ]
+ rm -f /boot/grub/hexdump.mod
+ test -f /boot/grub/hfs.mod
+ basename /boot/grub/hfs.mod
+ [ hfs.mod != menu.lst ]
+ rm -f /boot/grub/hfs.mod
+ test -f /boot/grub/hfsplus.mod
+ basename /boot/grub/hfsplus.mod
+ [ hfsplus.mod != menu.lst ]
+ rm -f /boot/grub/hfsplus.mod
+ test -f /boot/grub/iorw.mod
+ basename /boot/grub/iorw.mod
+ [ iorw.mod != menu.lst ]
+ rm -f /boot/grub/iorw.mod
+ test -f /boot/grub/iso9660.mod
+ basename /boot/grub/iso9660.mod
+ [ iso9660.mod != menu.lst ]
+ rm -f /boot/grub/iso9660.mod
+ test -f /boot/grub/jfs.mod
+ basename /boot/grub/jfs.mod
+ [ jfs.mod != menu.lst ]
+ rm -f /boot/grub/jfs.mod
+ test -f /boot/grub/jpeg.mod
+ basename /boot/grub/jpeg.mod
+ [ jpeg.mod != menu.lst ]
+ rm -f /boot/grub/jpeg.mod
+ test -f /boot/grub/keylayouts.mod
+ basename /boot/grub/keylayouts.mod
+ [ keylayouts.mod != menu.lst ]
+ rm -f /boot/grub/keylayouts.mod
+ test -f /boot/grub/keystatus.mod
+ basename /boot/grub/keystatus.mod
+ [ keystatus.mod != menu.lst ]
+ rm -f /boot/grub/keystatus.mod
+ test -f /boot/grub/linux.mod
+ basename /boot/grub/linux.mod
+ [ linux.mod != menu.lst ]
+ rm -f /boot/grub/linux.mod
+ test -f /boot/grub/linuxefi.mod
+ basename /boot/grub/linuxefi.mod
+ [ linuxefi.mod != menu.lst ]
+ rm -f /boot/grub/linuxefi.mod
+ test -f /boot/grub/loadbios.mod
+ basename /boot/grub/loadbios.mod
+ [ loadbios.mod != menu.lst ]
+ rm -f /boot/grub/loadbios.mod
+ test -f /boot/grub/loadenv.mod
+ basename /boot/grub/loadenv.mod
+ [ loadenv.mod != menu.lst ]
+ rm -f /boot/grub/loadenv.mod
+ test -f /boot/grub/loopback.mod
+ basename /boot/grub/loopback.mod
+ [ loopback.mod != menu.lst ]
+ rm -f /boot/grub/loopback.mod
+ test -f /boot/grub/ls.mod
+ basename /boot/grub/ls.mod
+ [ ls.mod != menu.lst ]
+ rm -f /boot/grub/ls.mod
+ test -f /boot/grub/lsacpi.mod
+ basename /boot/grub/lsacpi.mod
+ [ lsacpi.mod != menu.lst ]
+ rm -f /boot/grub/lsacpi.mod
+ test -f /boot/grub/lsefimmap.mod
+ basename /boot/grub/lsefimmap.mod
+ [ lsefimmap.mod != menu.lst ]
+ rm -f /boot/grub/lsefimmap.mod
+ test -f /boot/grub/lsefisystab.mod
+ basename /boot/grub/lsefisystab.mod
+ [ lsefisystab.mod != menu.lst ]
+ rm -f /boot/grub/lsefisystab.mod
+ test -f /boot/grub/lsmmap.mod
+ basename /boot/grub/lsmmap.mod
+ [ lsmmap.mod != menu.lst ]
+ rm -f /boot/grub/lsmmap.mod
+ test -f /boot/grub/lspci.mod
+ basename /boot/grub/lspci.mod
+ [ lspci.mod != menu.lst ]
+ rm -f /boot/grub/lspci.mod
+ test -f /boot/grub/lssal.mod
+ basename /boot/grub/lssal.mod
+ [ lssal.mod != menu.lst ]
+ rm -f /boot/grub/lssal.mod
+ test -f /boot/grub/lvm.mod
+ basename /boot/grub/lvm.mod
+ [ lvm.mod != menu.lst ]
+ rm -f /boot/grub/lvm.mod
+ test -f /boot/grub/lzopio.mod
+ basename /boot/grub/lzopio.mod
+ [ lzopio.mod != menu.lst ]
+ rm -f /boot/grub/lzopio.mod
+ test -f /boot/grub/mdraid09.mod
+ basename /boot/grub/mdraid09.mod
+ [ mdraid09.mod != menu.lst ]
+ rm -f /boot/grub/mdraid09.mod
+ test -f /boot/grub/mdraid1x.mod
+ basename /boot/grub/mdraid1x.mod
+ [ mdraid1x.mod != menu.lst ]
+ rm -f /boot/grub/mdraid1x.mod
+ test -f /boot/grub/memdisk.mod
+ basename /boot/grub/memdisk.mod
+ [ memdisk.mod != menu.lst ]
+ rm -f /boot/grub/memdisk.mod
+ test -f /boot/grub/memrw.mod
+ basename /boot/grub/memrw.mod
+ [ memrw.mod != menu.lst ]
+ rm -f /boot/grub/memrw.mod
+ test -f /boot/grub/minicmd.mod
+ basename /boot/grub/minicmd.mod
+ [ minicmd.mod != menu.lst ]
+ rm -f /boot/grub/minicmd.mod
+ test -f /boot/grub/minix.mod
+ basename /boot/grub/minix.mod
+ [ minix.mod != menu.lst ]
+ rm -f /boot/grub/minix.mod
+ test -f /boot/grub/minix2.mod
+ basename /boot/grub/minix2.mod
+ [ minix2.mod != menu.lst ]
+ rm -f /boot/grub/minix2.mod
+ test -f /boot/grub/mmap.mod
+ basename /boot/grub/mmap.mod
+ [ mmap.mod != menu.lst ]
+ rm -f /boot/grub/mmap.mod
+ test -f /boot/grub/msdospart.mod
+ basename /boot/grub/msdospart.mod
+ [ msdospart.mod != menu.lst ]
+ rm -f /boot/grub/msdospart.mod
+ test -f /boot/grub/multiboot.mod
+ basename /boot/grub/multiboot.mod
+ [ multiboot.mod != menu.lst ]
+ rm -f /boot/grub/multiboot.mod
+ test -f /boot/grub/multiboot2.mod
+ basename /boot/grub/multiboot2.mod
+ [ multiboot2.mod != menu.lst ]
+ rm -f /boot/grub/multiboot2.mod
+ test -f /boot/grub/nilfs2.mod
+ basename /boot/grub/nilfs2.mod
+ [ nilfs2.mod != menu.lst ]
+ rm -f /boot/grub/nilfs2.mod
+ test -f /boot/grub/normal.mod
+ basename /boot/grub/normal.mod
+ [ normal.mod != menu.lst ]
+ rm -f /boot/grub/normal.mod
+ test -f /boot/grub/ntfs.mod
+ basename /boot/grub/ntfs.mod
+ [ ntfs.mod != menu.lst ]
+ rm -f /boot/grub/ntfs.mod
+ test -f /boot/grub/ntfscomp.mod
+ basename /boot/grub/ntfscomp.mod
+ [ ntfscomp.mod != menu.lst ]
+ rm -f /boot/grub/ntfscomp.mod
+ test -f /boot/grub/ohci.mod
+ basename /boot/grub/ohci.mod
+ [ ohci.mod != menu.lst ]
+ rm -f /boot/grub/ohci.mod
+ test -f /boot/grub/part_acorn.mod
+ basename /boot/grub/part_acorn.mod
+ [ part_acorn.mod != menu.lst ]
+ rm -f /boot/grub/part_acorn.mod
+ test -f /boot/grub/part_amiga.mod
+ basename /boot/grub/part_amiga.mod
+ [ part_amiga.mod != menu.lst ]
+ rm -f /boot/grub/part_amiga.mod
+ test -f /boot/grub/part_apple.mod
+ basename /boot/grub/part_apple.mod
+ [ part_apple.mod != menu.lst ]
+ rm -f /boot/grub/part_apple.mod
+ test -f /boot/grub/part_bsd.mod
+ basename /boot/grub/part_bsd.mod
+ [ part_bsd.mod != menu.lst ]
+ rm -f /boot/grub/part_bsd.mod
+ test -f /boot/grub/part_gpt.mod
+ basename /boot/grub/part_gpt.mod
+ [ part_gpt.mod != menu.lst ]
+ rm -f /boot/grub/part_gpt.mod
+ test -f /boot/grub/part_msdos.mod
+ basename /boot/grub/part_msdos.mod
+ [ part_msdos.mod != menu.lst ]
+ rm -f /boot/grub/part_msdos.mod
+ test -f /boot/grub/part_sun.mod
+ basename /boot/grub/part_sun.mod
+ [ part_sun.mod != menu.lst ]
+ rm -f /boot/grub/part_sun.mod
+ test -f /boot/grub/part_sunpc.mod
+ basename /boot/grub/part_sunpc.mod
+ [ part_sunpc.mod != menu.lst ]
+ rm -f /boot/grub/part_sunpc.mod
+ test -f /boot/grub/parttool.mod
+ basename /boot/grub/parttool.mod
+ [ parttool.mod != menu.lst ]
+ rm -f /boot/grub/parttool.mod
+ test -f /boot/grub/password.mod
+ basename /boot/grub/password.mod
+ [ password.mod != menu.lst ]
+ rm -f /boot/grub/password.mod
+ test -f /boot/grub/password_pbkdf2.mod
+ basename /boot/grub/password_pbkdf2.mod
+ [ password_pbkdf2.mod != menu.lst ]
+ rm -f /boot/grub/password_pbkdf2.mod
+ test -f /boot/grub/pbkdf2.mod
+ basename /boot/grub/pbkdf2.mod
+ [ pbkdf2.mod != menu.lst ]
+ rm -f /boot/grub/pbkdf2.mod
+ test -f /boot/grub/pci.mod
+ basename /boot/grub/pci.mod
+ [ pci.mod != menu.lst ]
+ rm -f /boot/grub/pci.mod
+ test -f /boot/grub/play.mod
+ basename /boot/grub/play.mod
+ [ play.mod != menu.lst ]
+ rm -f /boot/grub/play.mod
+ test -f /boot/grub/png.mod
+ basename /boot/grub/png.mod
+ [ png.mod != menu.lst ]
+ rm -f /boot/grub/png.mod
+ test -f /boot/grub/probe.mod
+ basename /boot/grub/probe.mod
+ [ probe.mod != menu.lst ]
+ rm -f /boot/grub/probe.mod
+ test -f /boot/grub/raid.mod
+ basename /boot/grub/raid.mod
+ [ raid.mod != menu.lst ]
+ rm -f /boot/grub/raid.mod
+ test -f /boot/grub/raid5rec.mod
+ basename /boot/grub/raid5rec.mod
+ [ raid5rec.mod != menu.lst ]
+ rm -f /boot/grub/raid5rec.mod
+ test -f /boot/grub/raid6rec.mod
+ basename /boot/grub/raid6rec.mod
+ [ raid6rec.mod != menu.lst ]
+ rm -f /boot/grub/raid6rec.mod
+ test -f /boot/grub/read.mod
+ basename /boot/grub/read.mod
+ [ read.mod != menu.lst ]
+ rm -f /boot/grub/read.mod
+ test -f /boot/grub/reboot.mod
+ basename /boot/grub/reboot.mod
+ [ reboot.mod != menu.lst ]
+ rm -f /boot/grub/reboot.mod
+ test -f /boot/grub/regexp.mod
+ basename /boot/grub/regexp.mod
+ [ regexp.mod != menu.lst ]
+ rm -f /boot/grub/regexp.mod
+ test -f /boot/grub/reiserfs.mod
+ basename /boot/grub/reiserfs.mod
+ [ reiserfs.mod != menu.lst ]
+ rm -f /boot/grub/reiserfs.mod
+ test -f /boot/grub/relocator.mod
+ basename /boot/grub/relocator.mod
+ [ relocator.mod != menu.lst ]
+ rm -f /boot/grub/relocator.mod
+ test -f /boot/grub/scsi.mod
+ basename /boot/grub/scsi.mod
+ [ scsi.mod != menu.lst ]
+ rm -f /boot/grub/scsi.mod
+ test -f /boot/grub/search.mod
+ basename /boot/grub/search.mod
+ [ search.mod != menu.lst ]
+ rm -f /boot/grub/search.mod
+ test -f /boot/grub/search_fs_file.mod
+ basename /boot/grub/search_fs_file.mod
+ [ search_fs_file.mod != menu.lst ]
+ rm -f /boot/grub/search_fs_file.mod
+ test -f /boot/grub/search_fs_uuid.mod
+ basename /boot/grub/search_fs_uuid.mod
+ [ search_fs_uuid.mod != menu.lst ]
+ rm -f /boot/grub/search_fs_uuid.mod
+ test -f /boot/grub/search_label.mod
+ basename /boot/grub/search_label.mod
+ [ search_label.mod != menu.lst ]
+ rm -f /boot/grub/search_label.mod
+ test -f /boot/grub/serial.mod
+ basename /boot/grub/serial.mod
+ [ serial.mod != menu.lst ]
+ rm -f /boot/grub/serial.mod
+ test -f /boot/grub/setjmp.mod
+ basename /boot/grub/setjmp.mod
+ [ setjmp.mod != menu.lst ]
+ rm -f /boot/grub/setjmp.mod
+ test -f /boot/grub/setpci.mod
+ basename /boot/grub/setpci.mod
+ [ setpci.mod != menu.lst ]
+ rm -f /boot/grub/setpci.mod
+ test -f /boot/grub/sfs.mod
+ basename /boot/grub/sfs.mod
+ [ sfs.mod != menu.lst ]
+ rm -f /boot/grub/sfs.mod
+ test -f /boot/grub/sleep.mod
+ basename /boot/grub/sleep.mod
+ [ sleep.mod != menu.lst ]
+ rm -f /boot/grub/sleep.mod
+ test -f /boot/grub/squash4.mod
+ basename /boot/grub/squash4.mod
+ [ squash4.mod != menu.lst ]
+ rm -f /boot/grub/squash4.mod
+ test -f /boot/grub/tar.mod
+ basename /boot/grub/tar.mod
+ [ tar.mod != menu.lst ]
+ rm -f /boot/grub/tar.mod
+ test -f /boot/grub/terminal.mod
+ basename /boot/grub/terminal.mod
+ [ terminal.mod != menu.lst ]
+ rm -f /boot/grub/terminal.mod
+ test -f /boot/grub/terminfo.mod
+ basename /boot/grub/terminfo.mod
+ [ terminfo.mod != menu.lst ]
+ rm -f /boot/grub/terminfo.mod
+ test -f /boot/grub/test.mod
+ basename /boot/grub/test.mod
+ [ test.mod != menu.lst ]
+ rm -f /boot/grub/test.mod
+ test -f /boot/grub/test_blockarg.mod
+ basename /boot/grub/test_blockarg.mod
+ [ test_blockarg.mod != menu.lst ]
+ rm -f /boot/grub/test_blockarg.mod
+ test -f /boot/grub/testload.mod
+ basename /boot/grub/testload.mod
+ [ testload.mod != menu.lst ]
+ rm -f /boot/grub/testload.mod
+ test -f /boot/grub/tga.mod
+ basename /boot/grub/tga.mod
+ [ tga.mod != menu.lst ]
+ rm -f /boot/grub/tga.mod
+ test -f /boot/grub/trig.mod
+ basename /boot/grub/trig.mod
+ [ trig.mod != menu.lst ]
+ rm -f /boot/grub/trig.mod
+ test -f /boot/grub/true.mod
+ basename /boot/grub/true.mod
+ [ true.mod != menu.lst ]
+ rm -f /boot/grub/true.mod
+ test -f /boot/grub/udf.mod
+ basename /boot/grub/udf.mod
+ [ udf.mod != menu.lst ]
+ rm -f /boot/grub/udf.mod
+ test -f /boot/grub/ufs1.mod
+ basename /boot/grub/ufs1.mod
+ [ ufs1.mod != menu.lst ]
+ rm -f /boot/grub/ufs1.mod
+ test -f /boot/grub/ufs2.mod
+ basename /boot/grub/ufs2.mod
+ [ ufs2.mod != menu.lst ]
+ rm -f /boot/grub/ufs2.mod
+ test -f /boot/grub/uhci.mod
+ basename /boot/grub/uhci.mod
+ [ uhci.mod != menu.lst ]
+ rm -f /boot/grub/uhci.mod
+ test -f /boot/grub/usb.mod
+ basename /boot/grub/usb.mod
+ [ usb.mod != menu.lst ]
+ rm -f /boot/grub/usb.mod
+ test -f /boot/grub/usb_keyboard.mod
+ basename /boot/grub/usb_keyboard.mod
+ [ usb_keyboard.mod != menu.lst ]
+ rm -f /boot/grub/usb_keyboard.mod
+ test -f /boot/grub/usbms.mod
+ basename /boot/grub/usbms.mod
+ [ usbms.mod != menu.lst ]
+ rm -f /boot/grub/usbms.mod
+ test -f /boot/grub/usbserial_common.mod
+ basename /boot/grub/usbserial_common.mod
+ [ usbserial_common.mod != menu.lst ]
+ rm -f /boot/grub/usbserial_common.mod
+ test -f /boot/grub/usbserial_ftdi.mod
+ basename /boot/grub/usbserial_ftdi.mod
+ [ usbserial_ftdi.mod != menu.lst ]
+ rm -f /boot/grub/usbserial_ftdi.mod
+ test -f /boot/grub/usbserial_pl2303.mod
+ basename /boot/grub/usbserial_pl2303.mod
+ [ usbserial_pl2303.mod != menu.lst ]
+ rm -f /boot/grub/usbserial_pl2303.mod
+ test -f /boot/grub/usbtest.mod
+ basename /boot/grub/usbtest.mod
+ [ usbtest.mod != menu.lst ]
+ rm -f /boot/grub/usbtest.mod
+ test -f /boot/grub/video.mod
+ basename /boot/grub/video.mod
+ [ video.mod != menu.lst ]
+ rm -f /boot/grub/video.mod
+ test -f /boot/grub/video_bochs.mod
+ basename /boot/grub/video_bochs.mod
+ [ video_bochs.mod != menu.lst ]
+ rm -f /boot/grub/video_bochs.mod
+ test -f /boot/grub/video_cirrus.mod
+ basename /boot/grub/video_cirrus.mod
+ [ video_cirrus.mod != menu.lst ]
+ rm -f /boot/grub/video_cirrus.mod
+ test -f /boot/grub/video_fb.mod
+ basename /boot/grub/video_fb.mod
+ [ video_fb.mod != menu.lst ]
+ rm -f /boot/grub/video_fb.mod
+ test -f /boot/grub/videoinfo.mod
+ basename /boot/grub/videoinfo.mod
+ [ videoinfo.mod != menu.lst ]
+ rm -f /boot/grub/videoinfo.mod
+ test -f /boot/grub/videotest.mod
+ basename /boot/grub/videotest.mod
+ [ videotest.mod != menu.lst ]
+ rm -f /boot/grub/videotest.mod
+ test -f /boot/grub/xfs.mod
+ basename /boot/grub/xfs.mod
+ [ xfs.mod != menu.lst ]
+ rm -f /boot/grub/xfs.mod
+ test -f /boot/grub/xnu.mod
+ basename /boot/grub/xnu.mod
+ [ xnu.mod != menu.lst ]
+ rm -f /boot/grub/xnu.mod
+ test -f /boot/grub/xnu_uuid.mod
+ basename /boot/grub/xnu_uuid.mod
+ [ xnu_uuid.mod != menu.lst ]
+ rm -f /boot/grub/xnu_uuid.mod
+ test -f /boot/grub/xzio.mod
+ basename /boot/grub/xzio.mod
+ [ xzio.mod != menu.lst ]
+ rm -f /boot/grub/xzio.mod
+ test -f /boot/grub/zfs.mod
+ basename /boot/grub/zfs.mod
+ [ zfs.mod != menu.lst ]
+ rm -f /boot/grub/zfs.mod
+ test -f /boot/grub/zfsinfo.mod
+ basename /boot/grub/zfsinfo.mod
+ [ zfsinfo.mod != menu.lst ]
+ rm -f /boot/grub/zfsinfo.mod
+ test -f /boot/grub/command.lst
+ basename /boot/grub/command.lst
+ [ command.lst != menu.lst ]
+ rm -f /boot/grub/command.lst
+ test -f /boot/grub/crypto.lst
+ basename /boot/grub/crypto.lst
+ [ crypto.lst != menu.lst ]
+ rm -f /boot/grub/crypto.lst
+ test -f /boot/grub/fs.lst
+ basename /boot/grub/fs.lst
+ [ fs.lst != menu.lst ]
+ rm -f /boot/grub/fs.lst
+ test -f /boot/grub/moddep.lst
+ basename /boot/grub/moddep.lst
+ [ moddep.lst != menu.lst ]
+ rm -f /boot/grub/moddep.lst
+ test -f /boot/grub/partmap.lst
+ basename /boot/grub/partmap.lst
+ [ partmap.lst != menu.lst ]
+ rm -f /boot/grub/partmap.lst
+ test -f /boot/grub/parttool.lst
+ basename /boot/grub/parttool.lst
+ [ parttool.lst != menu.lst ]
+ rm -f /boot/grub/parttool.lst
+ test -f /boot/grub/terminal.lst
+ basename /boot/grub/terminal.lst
+ [ terminal.lst != menu.lst ]
+ rm -f /boot/grub/terminal.lst
+ test -f /boot/grub/video.lst
+ basename /boot/grub/video.lst
+ [ video.lst != menu.lst ]
+ rm -f /boot/grub/video.lst
+ test -f /boot/grub/*.img
+ test -f /boot/grub/efiemu??.o
+ cp -f /usr/lib/grub/x86_64-efi/acpi.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/adler32.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/affs.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/afs.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/afs_be.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/aout.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/appleldr.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/at_keyboard.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/ata.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/ata_pthru.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/befs.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/befs_be.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/bitmap.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/bitmap_scale.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/blocklist.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/boot.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/bsd.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/btrfs.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/bufio.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/cat.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/chain.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/cmp.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/configfile.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/cpio.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/cpuid.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/crypto.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/cs5536.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/date.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/datehook.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/datetime.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/dm_nv.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/echo.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/efi_gop.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/efi_uga.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/efifwsetup.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/elf.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/example_functional_test.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/ext2.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/extcmd.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/fat.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/fixvideo.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/font.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/fshelp.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/functional_test.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/gcry_arcfour.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/gcry_blowfish.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/gcry_camellia.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/gcry_cast5.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/gcry_crc.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/gcry_des.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/gcry_md4.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/gcry_md5.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/gcry_rfc2268.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/gcry_rijndael.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/gcry_rmd160.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/gcry_seed.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/gcry_serpent.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/gcry_sha1.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/gcry_sha256.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/gcry_sha512.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/gcry_tiger.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/gcry_twofish.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/gcry_whirlpool.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/gettext.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/gfxmenu.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/gfxterm.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/gptsync.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/gzio.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/halt.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/hashsum.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/hdparm.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/hello.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/help.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/hexdump.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/hfs.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/hfsplus.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/iorw.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/iso9660.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/jfs.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/jpeg.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/keylayouts.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/keystatus.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/linux.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/linuxefi.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/loadbios.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/loadenv.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/loopback.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/ls.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/lsacpi.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/lsefimmap.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/lsefisystab.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/lsmmap.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/lspci.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/lssal.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/lvm.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/lzopio.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/mdraid09.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/mdraid1x.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/memdisk.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/memrw.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/minicmd.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/minix.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/minix2.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/mmap.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/msdospart.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/multiboot.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/multiboot2.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/nilfs2.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/normal.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/ntfs.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/ntfscomp.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/ohci.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/part_acorn.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/part_amiga.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/part_apple.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/part_bsd.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/part_gpt.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/part_msdos.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/part_sun.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/part_sunpc.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/parttool.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/password.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/password_pbkdf2.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/pbkdf2.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/pci.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/play.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/png.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/probe.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/raid.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/raid5rec.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/raid6rec.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/read.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/reboot.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/regexp.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/reiserfs.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/relocator.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/scsi.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/search.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/search_fs_file.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/search_fs_uuid.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/search_label.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/serial.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/setjmp.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/setpci.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/sfs.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/sleep.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/squash4.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/tar.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/terminal.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/terminfo.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/test.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/test_blockarg.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/testload.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/tga.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/trig.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/true.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/udf.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/ufs1.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/ufs2.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/uhci.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/usb.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/usb_keyboard.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/usbms.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/usbserial_common.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/usbserial_ftdi.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/usbserial_pl2303.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/usbtest.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/video.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/video_bochs.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/video_cirrus.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/video_fb.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/videoinfo.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/videotest.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/xfs.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/xnu.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/xnu_uuid.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/xzio.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/zfs.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/zfsinfo.mod /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/command.lst /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/crypto.lst /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/fs.lst /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/moddep.lst /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/partmap.lst /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/parttool.lst /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/terminal.lst /boot/grub
+ cp -f /usr/lib/grub/x86_64-efi/video.lst /boot/grub
+ [ x86_64-efi = i386-pc ]
+ [ x86_64-efi = sparc64-ieee1275 ]
+ mkdir -p /boot/grub/locale/
+ test -f /usr/share/locale/aa/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/ace/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/af/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/am/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/an/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/ar/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/ary/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/as/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/ast/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/az/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/be/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/be@latin/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/bem/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/bg/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/bn/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/bn_IN/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/bo/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/br/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/bs/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/byn/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/ca/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/ca@valencia/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/chr/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/ckb/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/crh/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/cs/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/csb/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/cv/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/cy/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/da/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/de/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/de_DE/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/dv/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/dz/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/el/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/en/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/en@boldquot/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/en@quot/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/en_AU/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/en_CA/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/en_GB/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/eo/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/es/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/es_MX/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/et/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/eu/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/fa/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/fa_AF/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/fi/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/fil/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/fo/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/fr/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/frp/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/fur/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/fy/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/ga/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/gd/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/gez/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/gl/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/gu/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/gv/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/haw/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/he/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/hi/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/hr/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/ht/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/hu/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/hy/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/id/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/is/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/it/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/ja/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/jv/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/ka/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/kk/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/kl/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/km/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/kn/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/ko/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/kok/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/ku/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/ky/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/lb/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/ln/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/lo/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/locale.alias/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/lt/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/lv/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/md/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/mg/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/mhr/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/mi/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/mk/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/ml/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/ml_IN/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/mn/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/mr/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/ms/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/mt/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/my/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/nan/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/nb/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/nds/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/ne/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/nl/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/nn/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/no/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/nso/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/oc/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/om/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/or/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/os/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/pa/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/pam/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/pl/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/ps/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/pt/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/pt_BR/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/pt_PT/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/qu/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/ro/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/ru/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/rw/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/sc/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/sco/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/sd/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/shn/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/si/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/sk/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/sl/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/sml/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/sn/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/so/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/sq/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/sr/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/sr@Latn/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/sr@latin/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/st/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/sv/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/sw/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/ta/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/ta_LK/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/te/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/th/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/ti/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/tig/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/tk/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/tl/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/tr/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/trv/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/tt/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/ug/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/uk/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/ur/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/uz/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/ve/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/vec/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/vi/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/wa/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/wae/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/wal/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/wo/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/xh/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/yi/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/zh_CN/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/zh_HK/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/zh_TW/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale/zu/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale-langpack/en/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale-langpack/en@boldquot/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale-langpack/en@quot/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale-langpack/en@shaw/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale-langpack/en_AU/LC_MESSAGES/grub.mo
+ cp -f /usr/share/locale-langpack/en_AU/LC_MESSAGES/grub.mo /boot/grub/locale/en_AU.mo
+ test -f /usr/share/locale-langpack/en_CA/LC_MESSAGES/grub.mo
+ cp -f /usr/share/locale-langpack/en_CA/LC_MESSAGES/grub.mo /boot/grub/locale/en_CA.mo
+ test -f /usr/share/locale-langpack/en_GB/LC_MESSAGES/grub.mo
+ cp -f /usr/share/locale-langpack/en_GB/LC_MESSAGES/grub.mo /boot/grub/locale/en_GB.mo
+ test -f /usr/share/locale-langpack/en_NZ/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale-langpack/en_US/LC_MESSAGES/grub.mo
+ test -f /usr/share/locale-langpack/en_US@piglatin/LC_MESSAGES/grub.mo
+ /usr/sbin/grub-probe --device-map=/boot/grub/device.map --target=device /boot/grub
+ grub_device=/dev/sda1
+ test -f /boot/grub/grubenv
+ /usr/sbin/grub-probe --device-map=/boot/grub/device.map --target=fs --device /dev/sda1
+ fs_module=ext2
+ test xext2 = x
+ partmap_module=
+ /usr/sbin/grub-probe --device-map=/boot/grub/device.map --target=partmap --device /dev/sda1
+ partmap_module= part_msdos
+ /usr/sbin/grub-probe --device-map=/boot/grub/device.map --target=abstraction --device /dev/sda1
+ devabstraction_module=
+ modules=
+ modules= ext2 part_msdos
+ /usr/bin/grub-mkrelpath /boot/grub
+ relative_grubdir=/boot/grub
+ [ x/boot/grub = x ]
+ prefix_drive=
+ config_opt_file=
+ rm -f /boot/grub/load.cfg
+ [ x != x ]
+ [ x = x ]
+ [ x != x ]
+ /usr/sbin/grub-probe --device-map=/boot/grub/device.map --target=drive --device /dev/sda1
+ grub_drive=(hd0,msdos1)
+ echo (hd0,msdos1)
+ sed -e s/^[^,]*[,)]//; s/)$//
+ grub_partition=msdos1
+ echo (hd0,msdos1)
+ sed -e s/,[a-z0-9,]*//g
+ grub_drive=(hd0)
+ [ = ata ]
+ [ x(hd0) != x ]
+ /usr/sbin/grub-probe --device-map=/boot/grub/device.map --target=fs_uuid --device /dev/sda1
+ uuid=7e17232a-d94d-40fd-a8bb-f88e8c01ceb1
+ [ x7e17232a-d94d-40fd-a8bb-f88e8c01ceb1 = x ]
+ echo search.fs_uuid 7e17232a-d94d-40fd-a8bb-f88e8c01ceb1 root
+ echo set prefix=($root)/boot/grub
+ config_opt_file=/boot/grub/load.cfg
+ modules= ext2 part_msdos search_fs_uuid
+ mkimage_target=x86_64-efi
+ imgext=efi
+ [ x/boot/grub/load.cfg = x ]
+ /usr/bin/grub-mkimage -c /boot/grub/load.cfg -d /usr/lib/grub/x86_64-efi -O x86_64-efi --output=/boot/grub/core.efi --prefix=/boot/grub ext2 part_msdos search_fs_uuid
+ [ x86_64-efi = mips-yeeloong ]
+ [ x86_64-efi = i386-ieee1275 ]
+ [ x86_64-efi = powerpc-ieee1275 ]
+ [ x86_64-efi = i386-efi ]
+ [ x86_64-efi = x86_64-efi ]
+ [ x/boot/grub/load.cfg = x ]
+ /usr/bin/grub-mkimage -c /boot/grub/load.cfg -d /usr/lib/grub/x86_64-efi -O x86_64-efi --output=/boot/grub/grub.efi --prefix= ext2 part_msdos search_fs_uuid
+ [ x86_64-efi = i386-pc ]
+ [ x86_64-efi = sparc64-ieee1275 ]
+ [ x86_64-efi = i386-ieee1275 ]
+ [ x86_64-efi = powerpc-ieee1275 ]
+ [ xefi = xefi ]
+ [ no = yes ]
+ efi_signed=/usr/lib/grub/x86_64-efi-signed/grub.efi.signed
+ [ yes = yes ]
+ [ -e /usr/lib/grub/x86_64-efi-signed/grub.efi.signed ]
+ cp /boot/grub/core.efi /boot/grub/grub.efi
+ [ xx86_64 = xi386 ]
+ which efibootmgr
+ efibootmgr=/bin/efibootmgr
+ test no = no
+ test -n
+ test -z
+ test -e /boot/grub/stage2
+ echo Installation finished. No error reported.
Installation finished. No error reported.
+ exit 0
|