repo.or.cz
/
buildroot-gz.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
logrotate: enable selinux support
[buildroot-gz.git]
/
board
/
intel
/
galileo
/
genimage.cfg
blob
31add21e676f470513be185080bdf269dd4d3e41
1
# Create an image of the efi partition
2
image efi-part.vfat {
3
vfat {
4
file startup.nsh {
5
image = "efi-part/startup.nsh"
6
}
7
file EFI {
8
image = "efi-part/EFI"
9
}
10
}
11
size=512K
12
}
13
14
# Create the sdcard image, pulling in
15
# * the image created by buildroot
16
# * the efi-partition created above
17
image sdcard.img {
18
hdimage {
19
}
20
21
partition boot {
22
partition-type = 0xC
23
image = "efi-part.vfat"
24
}
25
26
partition rootfs {
27
partition-type = 0x83
28
image = "rootfs.ext2"
29
size = 512M
30
}
31
}