Skip to content

Commit 3b1be38

Browse files
committed
ubuntu boot
1 parent af9c363 commit 3b1be38

File tree

294 files changed

+131147
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

294 files changed

+131147
-0
lines changed

ubuntu_boot/System.map-4.15.0-29-generic

+97,982
Large diffs are not rendered by default.

ubuntu_boot/abi-4.15.0-29-generic

+22,724
Large diffs are not rendered by default.

ubuntu_boot/config-4.15.0-29-generic

+9,600
Large diffs are not rendered by default.

ubuntu_boot/efi/EFI/BOOT/BOOTX64.EFI

1.14 MB
Binary file not shown.

ubuntu_boot/efi/EFI/BOOT/fbx64.efi

78 KB
Binary file not shown.
108 Bytes
Binary file not shown.
69.7 KB
Binary file not shown.

ubuntu_boot/efi/EFI/ubuntu/grub.cfg

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
search.fs_uuid 8a117305-fb65-4fcf-a58c-2a26684874a9 root hd0,gpt2
2+
set prefix=($root)'/boot/grub'
3+
configfile $prefix/grub.cfg
1.06 MB
Binary file not shown.

ubuntu_boot/efi/EFI/ubuntu/mmx64.efi

1.1 MB
Binary file not shown.
1.14 MB
Binary file not shown.

ubuntu_boot/grub/fonts/unicode.pf2

2.29 MB
Binary file not shown.

ubuntu_boot/grub/gfxblacklist.txt

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# GRUB gfxpayload blacklist. The format is a sequence of lines of the
2+
# following form, using lower-case hexadecimal for all ID components:
3+
#
4+
# vVENDORdDEVICEsvSUBVENDORsdSUBDEVICEbcBASECLASSscSUBCLASS
5+
#
6+
# Blacklist lines are regex-matched (currently using Lua's string.find with
7+
# the line surrounded by ^ and $) against a corresponding PCI ID string. In
8+
# practice this means that you can replace any part of the ID string with .*
9+
# to match anything.
10+
#
11+
# There is no need to customise this file locally. If you need to disable
12+
# gfxpayload=keep on your system, just add this line (uncommented) to
13+
# /etc/default/grub:
14+
#
15+
# GRUB_GFXPAYLOAD_LINUX=text
16+
17+
v15add0710.*
18+
v15add0405.*
19+
v80eedbeef.*
20+
v1002d6738.*

ubuntu_boot/grub/grub.cfg

+221
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,221 @@
1+
#
2+
# DO NOT EDIT THIS FILE
3+
#
4+
# It is automatically generated by grub-mkconfig using templates
5+
# from /etc/grub.d and settings from /etc/default/grub
6+
#
7+
8+
### BEGIN /etc/grub.d/00_header ###
9+
if [ -s $prefix/grubenv ]; then
10+
set have_grubenv=true
11+
load_env
12+
fi
13+
if [ "${next_entry}" ] ; then
14+
set default="${next_entry}"
15+
set next_entry=
16+
save_env next_entry
17+
set boot_once=true
18+
else
19+
set default="0"
20+
fi
21+
22+
if [ x"${feature_menuentry_id}" = xy ]; then
23+
menuentry_id_option="--id"
24+
else
25+
menuentry_id_option=""
26+
fi
27+
28+
export menuentry_id_option
29+
30+
if [ "${prev_saved_entry}" ]; then
31+
set saved_entry="${prev_saved_entry}"
32+
save_env saved_entry
33+
set prev_saved_entry=
34+
save_env prev_saved_entry
35+
set boot_once=true
36+
fi
37+
38+
function savedefault {
39+
if [ -z "${boot_once}" ]; then
40+
saved_entry="${chosen}"
41+
save_env saved_entry
42+
fi
43+
}
44+
function recordfail {
45+
set recordfail=1
46+
if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
47+
}
48+
function load_video {
49+
if [ x$feature_all_video_module = xy ]; then
50+
insmod all_video
51+
else
52+
insmod efi_gop
53+
insmod efi_uga
54+
insmod ieee1275_fb
55+
insmod vbe
56+
insmod vga
57+
insmod video_bochs
58+
insmod video_cirrus
59+
fi
60+
}
61+
62+
if [ x$feature_default_font_path = xy ] ; then
63+
font=unicode
64+
else
65+
insmod part_gpt
66+
insmod ext2
67+
set root='hd0,gpt2'
68+
if [ x$feature_platform_search_hint = xy ]; then
69+
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2 8a117305-fb65-4fcf-a58c-2a26684874a9
70+
else
71+
search --no-floppy --fs-uuid --set=root 8a117305-fb65-4fcf-a58c-2a26684874a9
72+
fi
73+
font="/usr/share/grub/unicode.pf2"
74+
fi
75+
76+
if loadfont $font ; then
77+
set gfxmode=auto
78+
load_video
79+
insmod gfxterm
80+
set locale_dir=$prefix/locale
81+
set lang=en_IN
82+
insmod gettext
83+
fi
84+
terminal_output gfxterm
85+
if [ "${recordfail}" = 1 ] ; then
86+
set timeout=30
87+
else
88+
if [ x$feature_timeout_style = xy ] ; then
89+
set timeout_style=hidden
90+
set timeout=10
91+
# Fallback hidden-timeout code in case the timeout_style feature is
92+
# unavailable.
93+
elif sleep --interruptible 10 ; then
94+
set timeout=0
95+
fi
96+
fi
97+
### END /etc/grub.d/00_header ###
98+
99+
### BEGIN /etc/grub.d/05_debian_theme ###
100+
set menu_color_normal=white/black
101+
set menu_color_highlight=black/light-gray
102+
if background_color 44,0,30,0; then
103+
clear
104+
fi
105+
### END /etc/grub.d/05_debian_theme ###
106+
107+
### BEGIN /etc/grub.d/10_linux ###
108+
function gfxmode {
109+
set gfxpayload="${1}"
110+
if [ "${1}" = "keep" ]; then
111+
set vt_handoff=vt.handoff=1
112+
else
113+
set vt_handoff=
114+
fi
115+
}
116+
if [ "${recordfail}" != 1 ]; then
117+
if [ -e ${prefix}/gfxblacklist.txt ]; then
118+
if hwmatch ${prefix}/gfxblacklist.txt 3; then
119+
if [ ${match} = 0 ]; then
120+
set linux_gfx_mode=keep
121+
else
122+
set linux_gfx_mode=text
123+
fi
124+
else
125+
set linux_gfx_mode=text
126+
fi
127+
else
128+
set linux_gfx_mode=keep
129+
fi
130+
else
131+
set linux_gfx_mode=text
132+
fi
133+
export linux_gfx_mode
134+
menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-8a117305-fb65-4fcf-a58c-2a26684874a9' {
135+
recordfail
136+
load_video
137+
gfxmode $linux_gfx_mode
138+
insmod gzio
139+
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
140+
insmod part_gpt
141+
insmod ext2
142+
set root='hd0,gpt2'
143+
if [ x$feature_platform_search_hint = xy ]; then
144+
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2 8a117305-fb65-4fcf-a58c-2a26684874a9
145+
else
146+
search --no-floppy --fs-uuid --set=root 8a117305-fb65-4fcf-a58c-2a26684874a9
147+
fi
148+
linux /boot/vmlinuz-4.15.0-29-generic root=UUID=8a117305-fb65-4fcf-a58c-2a26684874a9 ro quiet splash $vt_handoff
149+
initrd /boot/initrd.img-4.15.0-29-generic
150+
}
151+
submenu 'Advanced options for Ubuntu' $menuentry_id_option 'gnulinux-advanced-8a117305-fb65-4fcf-a58c-2a26684874a9' {
152+
menuentry 'Ubuntu, with Linux 4.15.0-29-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-29-generic-advanced-8a117305-fb65-4fcf-a58c-2a26684874a9' {
153+
recordfail
154+
load_video
155+
gfxmode $linux_gfx_mode
156+
insmod gzio
157+
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
158+
insmod part_gpt
159+
insmod ext2
160+
set root='hd0,gpt2'
161+
if [ x$feature_platform_search_hint = xy ]; then
162+
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2 8a117305-fb65-4fcf-a58c-2a26684874a9
163+
else
164+
search --no-floppy --fs-uuid --set=root 8a117305-fb65-4fcf-a58c-2a26684874a9
165+
fi
166+
echo 'Loading Linux 4.15.0-29-generic ...'
167+
linux /boot/vmlinuz-4.15.0-29-generic root=UUID=8a117305-fb65-4fcf-a58c-2a26684874a9 ro quiet splash $vt_handoff
168+
echo 'Loading initial ramdisk ...'
169+
initrd /boot/initrd.img-4.15.0-29-generic
170+
}
171+
menuentry 'Ubuntu, with Linux 4.15.0-29-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-29-generic-recovery-8a117305-fb65-4fcf-a58c-2a26684874a9' {
172+
recordfail
173+
load_video
174+
insmod gzio
175+
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
176+
insmod part_gpt
177+
insmod ext2
178+
set root='hd0,gpt2'
179+
if [ x$feature_platform_search_hint = xy ]; then
180+
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2 8a117305-fb65-4fcf-a58c-2a26684874a9
181+
else
182+
search --no-floppy --fs-uuid --set=root 8a117305-fb65-4fcf-a58c-2a26684874a9
183+
fi
184+
echo 'Loading Linux 4.15.0-29-generic ...'
185+
linux /boot/vmlinuz-4.15.0-29-generic root=UUID=8a117305-fb65-4fcf-a58c-2a26684874a9 ro recovery nomodeset
186+
echo 'Loading initial ramdisk ...'
187+
initrd /boot/initrd.img-4.15.0-29-generic
188+
}
189+
}
190+
191+
### END /etc/grub.d/10_linux ###
192+
193+
### BEGIN /etc/grub.d/20_linux_xen ###
194+
195+
### END /etc/grub.d/20_linux_xen ###
196+
197+
### BEGIN /etc/grub.d/20_memtest86+ ###
198+
### END /etc/grub.d/20_memtest86+ ###
199+
200+
### BEGIN /etc/grub.d/30_os-prober ###
201+
### END /etc/grub.d/30_os-prober ###
202+
203+
### BEGIN /etc/grub.d/30_uefi-firmware ###
204+
menuentry 'System setup' $menuentry_id_option 'uefi-firmware' {
205+
fwsetup
206+
}
207+
### END /etc/grub.d/30_uefi-firmware ###
208+
209+
### BEGIN /etc/grub.d/40_custom ###
210+
# This file provides an easy way to add custom menu entries. Simply type the
211+
# menu entries you want to add after this comment. Be careful not to change
212+
# the 'exec tail' line above.
213+
### END /etc/grub.d/40_custom ###
214+
215+
### BEGIN /etc/grub.d/41_custom ###
216+
if [ -f ${config_directory}/custom.cfg ]; then
217+
source ${config_directory}/custom.cfg
218+
elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
219+
source $prefix/custom.cfg;
220+
fi
221+
### END /etc/grub.d/41_custom ###

ubuntu_boot/grub/grubenv

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# GRUB Environment Block
2+
#######################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################
117 KB
Binary file not shown.

ubuntu_boot/grub/locale/en_AU.mo

976 Bytes
Binary file not shown.

ubuntu_boot/grub/locale/en_CA.mo

512 Bytes
Binary file not shown.

ubuntu_boot/grub/locale/en_GB.mo

4.66 KB
Binary file not shown.

ubuntu_boot/grub/unicode.pf2

2.29 MB
Binary file not shown.

ubuntu_boot/grub/x86_64-efi/acpi.mod

15 KB
Binary file not shown.
1.88 KB
Binary file not shown.

ubuntu_boot/grub/x86_64-efi/affs.mod

7.77 KB
Binary file not shown.

ubuntu_boot/grub/x86_64-efi/afs.mod

7.98 KB
Binary file not shown.

ubuntu_boot/grub/x86_64-efi/ahci.mod

22.2 KB
Binary file not shown.
704 Bytes
Binary file not shown.

ubuntu_boot/grub/x86_64-efi/aout.mod

1.45 KB
Binary file not shown.
5.21 KB
Binary file not shown.
4.39 KB
Binary file not shown.
6.78 KB
Binary file not shown.

ubuntu_boot/grub/x86_64-efi/ata.mod

8.68 KB
Binary file not shown.
2.45 KB
Binary file not shown.

ubuntu_boot/grub/x86_64-efi/bfs.mod

9.09 KB
Binary file not shown.
3.07 KB
Binary file not shown.
5.24 KB
Binary file not shown.
3.08 KB
Binary file not shown.

ubuntu_boot/grub/x86_64-efi/boot.mod

3.17 KB
Binary file not shown.

ubuntu_boot/grub/x86_64-efi/bsd.mod

46.8 KB
Binary file not shown.
3.27 KB
Binary file not shown.

ubuntu_boot/grub/x86_64-efi/btrfs.mod

19 KB
Binary file not shown.

ubuntu_boot/grub/x86_64-efi/bufio.mod

2.72 KB
Binary file not shown.

ubuntu_boot/grub/x86_64-efi/cat.mod

4.26 KB
Binary file not shown.

ubuntu_boot/grub/x86_64-efi/cbfs.mod

5.57 KB
Binary file not shown.

ubuntu_boot/grub/x86_64-efi/cbls.mod

6.04 KB
Binary file not shown.
3.74 KB
Binary file not shown.
1.4 KB
Binary file not shown.
4.41 KB
Binary file not shown.

ubuntu_boot/grub/x86_64-efi/chain.mod

20 KB
Binary file not shown.
Binary file not shown.

ubuntu_boot/grub/x86_64-efi/cmp.mod

2.82 KB
Binary file not shown.
6.54 KB
Binary file not shown.

0 commit comments

Comments
 (0)