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
|
#
# Copyright (c) 2014, Intel Corporation.
#
# SPDX-License-Identifier: GPL-2.0-only
#
# DESCRIPTION
# This implements the 'bootimg_pcbios' source plugin class for 'wic'
#
# AUTHORS
# Tom Zanussi <tom.zanussi (at] linux.intel.com>
#
import logging
import os
import re
import shutil
from glob import glob
from wic import WicError
from wic.engine import get_custom_config
from wic.pluginbase import SourcePlugin
from wic.misc import (exec_cmd, exec_native_cmd,
get_bitbake_var, BOOTDD_EXTRA_SPACE)
logger = logging.getLogger('wic')
class BootimgPcbiosPlugin(SourcePlugin):
"""
Create MBR boot partition and install syslinux on it.
"""
name = 'bootimg_pcbios'
@classmethod
def _get_bootimg_dir(cls, bootimg_dir, dirname):
"""
Check if dirname exists in default bootimg_dir or in STAGING_DIR.
"""
staging_datadir = get_bitbake_var("STAGING_DATADIR")
for result in (bootimg_dir, staging_datadir):
if os.path.exists("%s/%s" % (result, dirname)):
return result
# STAGING_DATADIR is expanded with MLPREFIX if multilib is enabled
# but dependency syslinux is still populated to original STAGING_DATADIR
nonarch_datadir = re.sub('/[^/]*recipe-sysroot', '/recipe-sysroot', staging_datadir)
if os.path.exists(os.path.join(nonarch_datadir, dirname)):
return nonarch_datadir
raise WicError("Couldn't find correct bootimg_dir, exiting")
@classmethod
def do_install_disk(cls, disk, disk_name, creator, workdir, oe_builddir,
bootimg_dir, kernel_dir, native_sysroot):
full_path = creator._full_path(workdir, disk_name, "direct")
logger.debug("Installing MBR on disk %s as %s with size %s bytes",
disk_name, full_path, disk.min_size)
cls._do_install_syslinux(creator, bootimg_dir,
native_sysroot, full_path)
@classmethod
def do_configure_partition(cls, part, source_params, creator, cr_workdir,
oe_builddir, bootimg_dir, kernel_dir,
native_sysroot):
cls._do_configure_syslinux(part, creator, cr_workdir)
@classmethod
def do_prepare_partition(cls, part, source_params, creator, cr_workdir,
oe_builddir, bootimg_dir, kernel_dir,
rootfs_dir, native_sysroot):
cls._do_prepare_syslinux(part, cr_workdir, bootimg_dir,
kernel_dir, native_sysroot)
@classmethod
def _get_staging_libdir(cls):
"""
For unknown reasons when running test with poky
STAGING_LIBDIR gets unset when wic create is executed.
Bellow is a hack to determine what STAGING_LIBDIR should
be if not specified.
"""
staging_libdir = get_bitbake_var('STAGING_LIBDIR')
staging_dir_target = get_bitbake_var('STAGING_DIR_TARGET')
if not staging_libdir:
staging_libdir = '%s/usr/lib64' % staging_dir_target
if not os.path.isdir(staging_libdir):
staging_libdir = '%s/usr/lib32' % staging_dir_target
if not os.path.isdir(staging_libdir):
staging_libdir = '%s/usr/lib' % staging_dir_target
return staging_libdir
@classmethod
def _get_bootloader_config(cls, bootloader, loader):
custom_cfg = None
if bootloader.configfile:
custom_cfg = get_custom_config(bootloader.configfile)
if custom_cfg:
logger.debug("Using custom configuration file %s "
"for %s.cfg", bootloader.configfile,
loader)
return custom_cfg
else:
raise WicError("configfile is specified but failed to "
"get it from %s." % bootloader.configfile)
return custom_cfg
@classmethod
def _do_configure_syslinux(cls, part, creator, cr_workdir):
"""
Called before do_prepare_partition(), creates syslinux config
"""
hdddir = "%s/hdd/boot" % cr_workdir
install_cmd = "install -d %s" % hdddir
exec_cmd(install_cmd)
bootloader = creator.ks.bootloader
syslinux_conf = cls._get_bootloader_config(bootloader, 'syslinux')
if not syslinux_conf:
# Create syslinux configuration using parameters from wks file
splash = os.path.join(hdddir, "/splash.jpg")
if os.path.exists(splash):
splashline = "menu background splash.jpg"
else:
splashline = ""
# Set a default timeout if none specified to avoid
# 'None' being the value placed within the configuration
# file.
if not bootloader.timeout:
bootloader.timeout = 500
# Set a default kernel params string if none specified
# to avoid 'None' being the value placed within the
# configuration file.
if not bootloader.append:
bootloader.append = "rootwait console=ttyS0,115200 console=tty0"
syslinux_conf = ""
syslinux_conf += "PROMPT 0\n"
syslinux_conf += "TIMEOUT " + str(bootloader.timeout) + "\n"
syslinux_conf += "\n"
syslinux_conf += "ALLOWOPTIONS 1\n"
syslinux_conf += "SERIAL 0 115200\n"
syslinux_conf += "\n"
if splashline:
syslinux_conf += "%s\n" % splashline
syslinux_conf += "DEFAULT boot\n"
syslinux_conf += "LABEL boot\n"
kernel = "/" + get_bitbake_var("KERNEL_IMAGETYPE")
syslinux_conf += "KERNEL " + kernel + "\n"
syslinux_conf += "APPEND label=boot root=%s %s\n" % \
(creator.rootdev, bootloader.append)
logger.debug("Writing syslinux config %s/syslinux.cfg", hdddir)
cfg = open("%s/hdd/boot/syslinux.cfg" % cr_workdir, "w")
cfg.write(syslinux_conf)
cfg.close()
@classmethod
def _do_prepare_syslinux(cls, part, cr_workdir, bootimg_dir,
kernel_dir, native_sysroot):
"""
Called to do the actual content population for a partition i.e. it
'prepares' the partition to be incorporated into the image.
In this case, prepare content for legacy bios boot partition.
"""
bootimg_dir = cls._get_bootimg_dir(bootimg_dir, 'syslinux')
staging_kernel_dir = kernel_dir
hdddir = "%s/hdd/boot" % cr_workdir
kernel = get_bitbake_var("KERNEL_IMAGETYPE")
if get_bitbake_var("INITRAMFS_IMAGE_BUNDLE") == "1":
if get_bitbake_var("INITRAMFS_IMAGE"):
kernel = "%s-%s.bin" % \
(get_bitbake_var("KERNEL_IMAGETYPE"), get_bitbake_var("INITRAMFS_LINK_NAME"))
cmds = ("install -m 0644 %s/%s %s/%s" %
(staging_kernel_dir, kernel, hdddir, get_bitbake_var("KERNEL_IMAGETYPE")),
"install -m 444 %s/syslinux/ldlinux.sys %s/ldlinux.sys" %
(bootimg_dir, hdddir),
"install -m 0644 %s/syslinux/vesamenu.c32 %s/vesamenu.c32" %
(bootimg_dir, hdddir),
"install -m 444 %s/syslinux/libcom32.c32 %s/libcom32.c32" %
(bootimg_dir, hdddir),
"install -m 444 %s/syslinux/libutil.c32 %s/libutil.c32" %
(bootimg_dir, hdddir))
for install_cmd in cmds:
exec_cmd(install_cmd)
du_cmd = "du -bks %s" % hdddir
out = exec_cmd(du_cmd)
blocks = int(out.split()[0])
extra_blocks = part.get_extra_block_count(blocks)
if extra_blocks < BOOTDD_EXTRA_SPACE:
extra_blocks = BOOTDD_EXTRA_SPACE
blocks += extra_blocks
logger.debug("Added %d extra blocks to %s to get to %d total blocks",
extra_blocks, part.mountpoint, blocks)
# dosfs image, created by mkdosfs
bootimg = "%s/boot%s.img" % (cr_workdir, part.lineno)
label = part.label if part.label else "boot"
dosfs_cmd = "mkdosfs -n %s -i %s -S 512 -C %s %d" % \
(label, part.fsuuid, bootimg, blocks)
exec_native_cmd(dosfs_cmd, native_sysroot)
mcopy_cmd = "mcopy -i %s -s %s/* ::/" % (bootimg, hdddir)
exec_native_cmd(mcopy_cmd, native_sysroot)
syslinux_cmd = "syslinux %s" % bootimg
exec_native_cmd(syslinux_cmd, native_sysroot)
chmod_cmd = "chmod 644 %s" % bootimg
exec_cmd(chmod_cmd)
du_cmd = "du -Lbks %s" % bootimg
out = exec_cmd(du_cmd)
bootimg_size = out.split()[0]
part.size = int(bootimg_size)
part.source_file = bootimg
@classmethod
def _do_install_syslinux(cls, creator, bootimg_dir,
native_sysroot, full_path):
"""
Called after all partitions have been prepared and assembled into a
disk image. In this case, we install the MBR.
"""
bootimg_dir = cls._get_bootimg_dir(bootimg_dir, 'syslinux')
mbrfile = "%s/syslinux/" % bootimg_dir
if creator.ptable_format == 'msdos':
mbrfile += "mbr.bin"
elif creator.ptable_format == 'gpt':
mbrfile += "gptmbr.bin"
else:
raise WicError("Unsupported partition table: %s" %
creator.ptable_format)
if not os.path.exists(mbrfile):
raise WicError("Couldn't find %s. If using the -e option, do you "
"have the right MACHINE set in local.conf? If not, "
"is the bootimg_dir path correct?" % mbrfile)
dd_cmd = "dd if=%s of=%s conv=notrunc" % (mbrfile, full_path)
exec_cmd(dd_cmd, native_sysroot)
@classmethod
def _do_configure_grub(cls, part, creator, cr_workdir):
hdddir = "%s/hdd" % cr_workdir
bootloader = creator.ks.bootloader
grub_conf = cls._get_bootloader_config(bootloader, 'grub')
grub_prefix_path = get_bitbake_var('GRUB_PREFIX_PATH')
if not grub_prefix_path:
grub_prefix_path = '/boot/grub'
grub_path = "%s/%s" %(hdddir, grub_prefix_path)
install_cmd = "install -d %s" % grub_path
exec_cmd(install_cmd)
if not grub_conf:
# Set a default timeout if none specified to avoid
# 'None' being the value placed within the configuration
# file.
if not bootloader.timeout:
bootloader.timeout = 500
# Set a default kernel params string if none specified
# to avoid 'None' being the value placed within the
# configuration file.
if not bootloader.append:
bootloader.append = "rootwait rootfstype=%s " % (part.fstype)
bootloader.append += "console=ttyS0,115200 console=tty0"
kernel = "/boot/" + get_bitbake_var("KERNEL_IMAGETYPE")
grub_conf = 'serial --unit=0 --speed=115200 --word=8 --parity=no --stop=1\n'
grub_conf += 'set gfxmode=auto\n'
grub_conf += 'set gfxpayload=keep\n\n'
grub_conf += 'set default=0\n\n'
grub_conf += '# Boot automatically after %d secs.\n' % (bootloader.timeout)
grub_conf += 'set timeout=%d\n\n' % (bootloader.timeout)
grub_conf += 'menuentry \'default\' {\n'
grub_conf += '\tsearch --no-floppy --set=root --file %s\n' % (kernel)
grub_conf += '\tprobe --set partuuid --part-uuid ($root)\n'
grub_conf += '\tlinux %s root=PARTUUID=$partuuid %s\n}\n' % \
(kernel, bootloader.append)
logger.debug("Writing grub config %s/grub.cfg", grub_path)
cfg = open("%s/grub.cfg" % grub_path, "w")
cfg.write(grub_conf)
cfg.close()
@classmethod
def _do_prepare_grub(cls, part, cr_workdir, oe_builddir,
kernel_dir, rootfs_dir, native_sysroot):
"""
1. Generate embed.cfg that'll later be embedded into core.img.
So, that core.img knows where to search for grub.cfg.
2. Generate core.img or grub stage 1.5.
3. Copy modules into partition.
4. Create partition rootfs file.
"""
hdddir = "%s/hdd" % cr_workdir
copy_types = [ '*.mod', '*.o', '*.lst' ]
builtin_modules = 'boot linux ext2 fat serial part_msdos part_gpt \
normal multiboot probe biosdisk msdospart configfile search loadenv test'
staging_libdir = cls._get_staging_libdir()
grub_format = get_bitbake_var('GRUB_MKIMAGE_FORMAT_PC')
if not grub_format:
grub_format = 'i386-pc'
grub_prefix_path = get_bitbake_var('GRUB_PREFIX_PATH')
if not grub_prefix_path:
grub_prefix_path = '/boot/grub'
grub_path = "%s/%s" %(hdddir, grub_prefix_path)
core_img = '%s/grub-bios-core.img' % (kernel_dir)
grub_mods_path = '%s/grub/%s' % (staging_libdir, grub_format)
# Generate embedded grub config
embed_cfg_str = 'search.file %s/grub.cfg root\n' % (grub_prefix_path)
embed_cfg_str += 'set prefix=($root)%s\n' % (grub_prefix_path)
embed_cfg_str += 'configfile ($root)%s/grub.cfg\n' % (grub_prefix_path)
cfg = open('%s/embed.cfg' % (kernel_dir), 'w+')
cfg.write(embed_cfg_str)
cfg.close()
# core.img doesn't get included into boot partition
# it's later dd onto the resulting wic image.
grub_mkimage = 'grub-mkimage \
--prefix=%s \
--format=%s \
--config=%s/embed.cfg \
--directory=%s \
--output=%s %s' % \
(grub_prefix_path, grub_format, kernel_dir,
grub_mods_path, core_img, builtin_modules)
exec_native_cmd(grub_mkimage, native_sysroot)
# Copy grub modules
install_dir = '%s/%s/%s' % (hdddir, grub_prefix_path, grub_format)
os.makedirs(install_dir, exist_ok=True)
for ctype in copy_types:
files = glob('%s/grub/%s/%s' % \
(staging_libdir, grub_format, ctype))
for file in files:
shutil.copy2(file, install_dir, follow_symlinks=True)
# Create boot partition
logger.debug('Prepare partition using rootfs in %s', hdddir)
part.prepare_rootfs(cr_workdir, oe_builddir, hdddir,
native_sysroot, False)
@classmethod
def _do_install_grub(cls, creator, kernel_dir,
native_sysroot, full_path):
core_img = '%s/grub-bios-core.img' % (kernel_dir)
staging_libdir = cls._get_staging_libdir()
grub_format = get_bitbake_var('GRUB_MKIMAGE_FORMAT_PC')
if not grub_format:
grub_format = 'i386-pc'
boot_img = '%s/grub/%s/boot.img' % (staging_libdir, grub_format)
if not os.path.exists(boot_img):
raise WicError("Couldn't find %s. Did you include "
"do_image_wic[depends] += \"grub:do_populate_sysroot\" "
"in your image recipe" % boot_img)
# Install boot.img or grub stage 1
dd_cmd = "dd if=%s of=%s conv=notrunc bs=1 seek=0 count=440" % (boot_img, full_path)
exec_cmd(dd_cmd, native_sysroot)
if creator.ptable_format == 'msdos':
# Install core.img or grub stage 1.5
dd_cmd = "dd if=%s of=%s conv=notrunc bs=1 seek=512" % (core_img, full_path)
exec_cmd(dd_cmd, native_sysroot)
else:
raise WicError("Unsupported partition table: %s" %
creator.ptable_format)
|