Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mkimage-profiles
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Anton Palgunov
mkimage-profiles
Commits
4d39e023
Commit
4d39e023
authored
Dec 17, 2019
by
Anton Midyukov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tar2fs: add support efi
parent
2e85fcc2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
81 additions
and
10 deletions
+81
-10
tar2fs
bin/tar2fs
+81
-10
No files found.
bin/tar2fs
View file @
4d39e023
...
@@ -30,6 +30,8 @@ CUR_BOUNDARY=0 # align first partition at 1MB for performance (+1)
...
@@ -30,6 +30,8 @@ CUR_BOUNDARY=0 # align first partition at 1MB for performance (+1)
BOOTFSTYPE
=
BOOTFSTYPE
=
BOOTPART
=
BOOTPART
=
EFIPARTFSTYPE
=
EFIPART
=
BOOTLOADER
=
"
$5
"
BOOTLOADER
=
"
$5
"
...
@@ -50,7 +52,14 @@ ppc*)
...
@@ -50,7 +52,14 @@ ppc*)
ROOTPART
=
"2"
ROOTPART
=
"2"
;;
;;
*
)
*
)
ROOTPART
=
"1"
if
[
"
$BOOTLOADER
"
==
grub-efi
]
;
then
EFIPART
=
"1"
EFIPARTSIZEM
=
"256"
EFIPARTFSTYPE
=
"fat"
ROOTPART
=
"2"
else
ROOTPART
=
"1"
fi
BLOCKDEV
=
"/dev/sda"
BLOCKDEV
=
"/dev/sda"
;;
;;
esac
esac
...
@@ -82,9 +91,14 @@ mkpart() {
...
@@ -82,9 +91,14 @@ mkpart() {
CUR_BOUNDARY
=
"
$((
$start
+
$1
))
"
CUR_BOUNDARY
=
"
$((
$start
+
$1
))
"
local
end
=
"
$CUR_BOUNDARY
"
MiB
local
end
=
"
$CUR_BOUNDARY
"
MiB
else
else
local
end
=
"
-1s"
# last sector of the image
local
end
=
"
$OFFSET
"
MiB
fi
fi
parting mkpart primary ext2
"
$start
"
MiB
"
$end
"
if
[
-n
"
$2
"
]
;
then
CUR_FS
=
"
$2
"
else
CUR_FS
=
ext2
fi
parting mkpart primary
"
$CUR_FS
"
"
$start
"
MiB
"
$end
"
}
}
# a tarball containing chroot with a kernel
# a tarball containing chroot with a kernel
...
@@ -118,7 +132,8 @@ ROOTFSTYPE="${4:-ext4}"
...
@@ -118,7 +132,8 @@ ROOTFSTYPE="${4:-ext4}"
ROOTDEV
=
"
$BLOCKDEV$ROOTPART
"
ROOTDEV
=
"
$BLOCKDEV$ROOTPART
"
# last preparations...
# last preparations...
MKFS
=
"mkfs.
$ROOTFSTYPE
${
BOOTFSTYPE
:+mkfs.
$BOOTFSTYPE
}
"
MKFS
=
"mkfs.
$ROOTFSTYPE
${
BOOTFSTYPE
:+mkfs.
$BOOTFSTYPE
}
\
${
EFIPARTFSTYPE
:+mkfs.
$EFIPARTFSTYPE
}
"
for
i
in
losetup sfdisk parted kpartx
$MKFS
;
do
for
i
in
losetup sfdisk parted kpartx
$MKFS
;
do
if
!
type
-t
"
$i
"
>
&/dev/null
;
then
if
!
type
-t
"
$i
"
>
&/dev/null
;
then
fatal
"
$i
required but not found in host system"
fatal
"
$i
required but not found in host system"
...
@@ -129,15 +144,20 @@ LOOPDEV="$(losetup --find)" # would be sad about non-binary megabytes too
...
@@ -129,15 +144,20 @@ LOOPDEV="$(losetup --find)" # would be sad about non-binary megabytes too
ROOTFS
=
"
$WORKDIR
/chroot"
ROOTFS
=
"
$WORKDIR
/chroot"
BOOTFS
=
BOOTFS
=
EFIPARTFS
=
if
[
-n
"
$BOOTPART
"
]
;
then
if
[
-n
"
$BOOTPART
"
]
;
then
BOOTFS
=
"
$ROOTFS
/boot"
BOOTFS
=
"
$ROOTFS
/boot"
fi
fi
if
[
-n
"
$EFIPART
"
]
;
then
EFIPARTFS
=
"
$ROOTFS
/boot/efi"
fi
exit_handler
()
{
exit_handler
()
{
rc
=
$?
rc
=
$?
cd
/
cd
/
if
[
-n
"
$ROOTFS
"
]
;
then
if
[
-n
"
$ROOTFS
"
]
;
then
umount
${
BOOTFS
:+
"
$BOOTFS
"
}
"
$ROOTFS
"
{
/dev,/proc,/sys,
}
umount
${
EFIPARTFS
:+
"
$EFIPARTFS
"
}
${
BOOTFS
:+
"
$BOOTFS
"
}
\
"
$ROOTFS
"
{
/dev,/proc,/sys,
}
if
[
-n
"
$LOOPDEV
"
]
;
then
if
[
-n
"
$LOOPDEV
"
]
;
then
kpartx
-d
-s
"
$LOOPDEV
"
||
{
kpartx
-d
-s
"
$LOOPDEV
"
||
{
...
@@ -157,12 +177,15 @@ trap exit_handler EXIT ERR
...
@@ -157,12 +177,15 @@ trap exit_handler EXIT ERR
# prepare disk image and a filesystem inside it
# prepare disk image and a filesystem inside it
rm
-f
--
"
$IMG
"
rm
-f
--
"
$IMG
"
OFFSET
=
"
$((
$CUR_BOUNDARY
+
$EFIPARTSIZEM
+
$BOOTLOADERPARTSIZEM
+
$BOOTSIZEM
+
$ROOTSIZEM
-
1
))
"
OFFSET
=
"
$((
$CUR_BOUNDARY
+
$BOOTLOADERPARTSIZEM
+
$BOOTSIZEM
+
$ROOTSIZEM
-
1
))
"
dd
if
=
/dev/zero
of
=
"
$IMG
"
conv
=
notrunc
bs
=
$MB
count
=
1
seek
=
"
$OFFSET
"
dd
if
=
/dev/zero
of
=
"
$IMG
"
conv
=
notrunc
bs
=
$MB
count
=
1
seek
=
"
$OFFSET
"
losetup
"
$LOOPDEV
"
"
$IMG
"
losetup
"
$LOOPDEV
"
"
$IMG
"
parting mklabel msdos
if
[
"
$BOOTLOADER
"
==
grub-efi
]
;
then
parting mklabel gpt
else
parting mklabel msdos
fi
if
[
-n
"
$BOOTLOADERPART
"
]
&&
[
-n
"
$BOOTLOADERPARTSIZEM
"
]
;
then
if
[
-n
"
$BOOTLOADERPART
"
]
&&
[
-n
"
$BOOTLOADERPARTSIZEM
"
]
;
then
case
"
$ARCH
"
in
case
"
$ARCH
"
in
...
@@ -175,6 +198,14 @@ if [ -n "$BOOTLOADERPART" ] && [ -n "$BOOTLOADERPARTSIZEM" ]; then
...
@@ -175,6 +198,14 @@ if [ -n "$BOOTLOADERPART" ] && [ -n "$BOOTLOADERPARTSIZEM" ]; then
esac
esac
fi
fi
if
[
-n
"
$EFIPART
"
]
;
then
EFIDEV
=
"
$EFIDEV$EFIPART
"
parting mkpart fat32 2048s
$((
$EFIPARTSIZEM
+
1
))
MiB
CUR_BOUNDARY
=
"
$EFIPARTSIZEM
"
parting
set
1 boot on
parting
set
1 esp on
fi
if
[
-n
"
$BOOTPART
"
]
;
then
if
[
-n
"
$BOOTPART
"
]
;
then
BOOTDEV
=
"
$BLOCKDEV$BOOTPART
"
BOOTDEV
=
"
$BLOCKDEV$BOOTPART
"
mkpart
"
$BOOTSIZEM
"
mkpart
"
$BOOTSIZEM
"
...
@@ -197,6 +228,11 @@ if [ -n "$BOOTLOADERPART" ] && [ -n "$BOOTLOADERPARTSIZEM" ]; then
...
@@ -197,6 +228,11 @@ if [ -n "$BOOTLOADERPART" ] && [ -n "$BOOTLOADERPARTSIZEM" ]; then
LOOPBOOTLOADER
=
"/dev/mapper/
$(
basename
"
$LOOPDEV
"
)
p
$BOOTLOADERPART
"
LOOPBOOTLOADER
=
"/dev/mapper/
$(
basename
"
$LOOPDEV
"
)
p
$BOOTLOADERPART
"
fi
fi
if
[
-n
"
$EFIPART
"
]
;
then
LOOPEFI
=
"/dev/mapper/
$(
basename
"
$LOOPDEV
"
)
p
$EFIPART
"
mkfs.fat
-F32
"
$LOOPEFI
"
fi
ROOTUUID
=
"
$(
blkid
-s
UUID
-o
value
-c
/dev/null
"
$LOOPROOT
"
)
"
ROOTUUID
=
"
$(
blkid
-s
UUID
-o
value
-c
/dev/null
"
$LOOPROOT
"
)
"
if
[
-n
"
$ROOTUUID
"
]
;
then
if
[
-n
"
$ROOTUUID
"
]
;
then
ROOTDEV
=
"UUID=
$ROOTUUID
"
ROOTDEV
=
"UUID=
$ROOTUUID
"
...
@@ -206,11 +242,18 @@ fi
...
@@ -206,11 +242,18 @@ fi
if
[
-n
"
$BOOTPART
"
]
;
then
if
[
-n
"
$BOOTPART
"
]
;
then
BOOTUUID
=
"
$(
blkid
-s
UUID
-o
value
-c
/dev/null
"
$LOOPBOOT
"
)
"
BOOTUUID
=
"
$(
blkid
-s
UUID
-o
value
-c
/dev/null
"
$LOOPBOOT
"
)
"
if
[
-n
"
$
R
OOTUUID
"
]
;
then
if
[
-n
"
$
B
OOTUUID
"
]
;
then
BOOTDEV
=
"UUID=
$BOOTUUID
"
BOOTDEV
=
"UUID=
$BOOTUUID
"
fi
fi
fi
fi
if
[
-n
"
$EFIPART
"
]
;
then
EFIUUID
=
"
$(
blkid
-s
UUID
-o
value
-c
/dev/null
"
$LOOPEFI
"
)
"
if
[
-n
"
$EFIUUID
"
]
;
then
EFIDEV
=
"UUID=
$EFIUUID
"
fi
fi
# mount and populate it
# mount and populate it
mkdir
-pm755
"
$ROOTFS
"
mkdir
-pm755
"
$ROOTFS
"
mount
"
$LOOPROOT
"
"
$ROOTFS
"
mount
"
$LOOPROOT
"
"
$ROOTFS
"
...
@@ -220,6 +263,11 @@ if [ -n "$BOOTPART" ]; then
...
@@ -220,6 +263,11 @@ if [ -n "$BOOTPART" ]; then
mount
"
$LOOPBOOT
"
"
$BOOTFS
"
mount
"
$LOOPBOOT
"
"
$BOOTFS
"
fi
fi
if
[
-n
"
$EFIPART
"
]
;
then
mkdir
-pm751
"
$EFIPARTFS
"
mount
"
$LOOPEFI
"
"
$EFIPARTFS
"
fi
tar
-C
"
$ROOTFS
"
--numeric-owner
-xf
"
$TAR
"
tar
-C
"
$ROOTFS
"
--numeric-owner
-xf
"
$TAR
"
for
i
in
/dev /proc /sys
;
do
mount
--bind
"
$i
"
"
$ROOTFS$i
"
;
done
for
i
in
/dev /proc /sys
;
do
mount
--bind
"
$i
"
"
$ROOTFS$i
"
;
done
...
@@ -234,6 +282,9 @@ fi
...
@@ -234,6 +282,9 @@ fi
if
[
-n
"
$BOOTPART
"
]
;
then
if
[
-n
"
$BOOTPART
"
]
;
then
echo
"
$BOOTDEV
/boot
$BOOTFSTYPE
defaults 1 2"
>>
"
$ROOTFS
/etc/fstab"
echo
"
$BOOTDEV
/boot
$BOOTFSTYPE
defaults 1 2"
>>
"
$ROOTFS
/etc/fstab"
fi
fi
if
[
-n
"
$EFIPART
"
]
;
then
echo
"
$EFIDEV
/boot/efi vfat umask=0,quiet,showexec,iocharset=utf8,codepage=866 1 2"
>>
"
$ROOTFS
/etc/fstab"
fi
# Query ARCH in chroot and redefine arch-dependent variable
# Query ARCH in chroot and redefine arch-dependent variable
ARCH
=
"
$(
chroot
"
$ROOTFS
"
rpm
--eval
'%_host_cpu'
)
"
ARCH
=
"
$(
chroot
"
$ROOTFS
"
rpm
--eval
'%_host_cpu'
)
"
...
@@ -323,13 +374,33 @@ image=/boot/vmlinuz
...
@@ -323,13 +374,33 @@ image=/boot/vmlinuz
;;
;;
grub-efi
)
grub-efi
)
chroot
"
$ROOTFS
"
grub-mkconfig
-o
/boot/grub/grub.cfg
chroot
"
$ROOTFS
"
grub-mkconfig
-o
/boot/grub/grub.cfg
chroot
"
$ROOTFS
"
grub-install
case
"
$ARCH
"
in
*
86
)
chroot
"
$ROOTFS
"
grub-install
--target
=
i386-efi
--removable
sed
-i
's/initrd16/initrdefi/g'
"
$ROOTFS
/boot/grub/grub.cfg"
sed
-i
's/linux16/linuxefi/g'
"
$ROOTFS
/boot/grub/grub.cfg"
;;
x86_64
)
chroot
"
$ROOTFS
"
grub-install
--target
=
i386-efi
--removable
chroot
"
$ROOTFS
"
grub-install
--target
=
x86_64-efi
--removable
sed
-i
's/initrd16/initrdefi/g'
"
$ROOTFS
/boot/grub/grub.cfg"
sed
-i
's/linux16/linuxefi/g'
"
$ROOTFS
/boot/grub/grub.cfg"
;;
aarch64
)
chroot
"
$ROOTFS
"
grub-install
--target
=
arm64-efi
--removable
;;
armh
)
chroot
"
$ROOTFS
"
grub-install
--target
=
arm-efi
--removable
;;
esac
;;
;;
grub
)
grub
)
chroot
"
$ROOTFS
"
grub-mkconfig
-o
/boot/grub/grub.cfg
chroot
"
$ROOTFS
"
grub-mkconfig
-o
/boot/grub/grub.cfg
case
"
$ARCH
"
in
case
"
$ARCH
"
in
*
86
*
)
*
86
*
)
chroot
"
$ROOTFS
"
grub-install
--target
=
i386-pc
"
$LOOPDEV
"
chroot
"
$ROOTFS
"
grub-install
--target
=
i386-pc
"
$LOOPDEV
"
sed
-i
's/initrdefi/initrd16/g'
"
$ROOTFS
/boot/grub/grub.cfg"
sed
-i
's/linuxefi/linux16/g'
"
$ROOTFS
/boot/grub/grub.cfg"
;;
;;
ppc
*
)
ppc
*
)
[
-z
"
$LOOPBOOTLOADER
"
]
||
[
-z
"
$LOOPBOOTLOADER
"
]
||
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment