Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/modules/base/kspost.50.zip_bootfiles.nochroot.inc
blob: 8477ae2fb3cc9f907db8e3b9b258a9c256136a7e (plain)
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
# Put the unsigned kernel/initramfs in zip files and remove the originals
# This avoids duplication for signed builds (where these zips will be signed
# later), where otherwise we would be shipped both signed and unsigned kernels
# and losing some disk space.

# Create zip files
create_unsigned_zip() {
	local infile=$1
	local tgt=$2

	cd $INSTALL_ROOT/boot
	[ -e $1 ] || return

	cp $1 data.img
	zip -j -n .img ${tgt}.zip data.img
	rm -f data.img
}

create_unsigned_zip vmlinuz runos
create_unsigned_zip initrd.img runrd
create_unsigned_zip actrd.img actrd

# Remove original copies
remove_original() {
	local name=$1

	cd $INSTALL_ROOT/boot
	[ -e "$name" ] || return

	if [ -L "$name" ]; then
		dest=$(readlink $name)
		rm -rf "$dest"
	fi

	rm -f $name
}

remove_original vmlinuz
remove_original actrd.img
remove_original initrd.img

# symlink actXX to runXX (or the other way) if any of them are missing
[ -e $INSTALL_ROOT/boot/actos.zip ] || ln -s runos.zip $INSTALL_ROOT/boot/actos.zip
[ -e $INSTALL_ROOT/boot/actrd.zip ] || ln -s runrd.zip $INSTALL_ROOT/boot/actrd.zip
[ -e $INSTALL_ROOT/boot/runos.zip ] || ln -s actos.zip $INSTALL_ROOT/boot/runos.zip
[ -e $INSTALL_ROOT/boot/runrd.zip ] || ln -s actrd.zip $INSTALL_ROOT/boot/runrd.zip