aboutsummaryrefslogtreecommitdiff
blob: 41fac810949b79652e547cb3b2bec5b539c68b4a (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
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
#!/bin/bash

source /tmp/chroot-functions.sh

install -d /tmp/kerncache

distkmerge_get_image_path() {
    case ${clst_basearch} in
        amd64|x86)
            echo arch/x86/boot/bzImage
            ;;
        arm64)
            echo arch/arm64/boot/Image.gz
            ;;
        arm)
            echo arch/arm/boot/zImage
            ;;
        hppa|ppc|ppc64)
            echo ./vmlinux
            ;;
        riscv)
            echo arch/riscv/boot/Image.gz
            ;;
        *)
            die "unsupported ARCH=${clst_basearch}"
            ;;
    esac
}

genkernel_compile() {
	# default genkernel args
	GK_ARGS=(
		"${kernel_gk_kernargs[@]}"
		--cachedir=/tmp/kerncache/${kname}-genkernel_cache-${clst_version_stamp}
		--no-mountboot
		--kerneldir=/usr/src/linux
		--modulespackage=/tmp/kerncache/${kname}-modules-${clst_version_stamp}.tar.bz2
		--minkernpackage=/tmp/kerncache/${kname}-kernel-initrd-${clst_version_stamp}.tar.bz2 all
	)
	# extra genkernel options that we have to test for
	if [[ -n ${clst_gk_mainargs} ]]; then
		GK_ARGS+=(${clst_gk_mainargs})
	fi
	if [[ -n ${clst_KERNCACHE} ]]; then
		GK_ARGS+=(--kerncache=/tmp/kerncache/${kname}-kerncache-${clst_version_stamp}.tar.bz2)
	fi
	if [[ -e /var/tmp/${kname}.config ]]; then
		GK_ARGS+=(--kernel-config=/var/tmp/${kname}.config)
	fi
	if [[ -d /tmp/initramfs_overlay/${initramfs_overlay} ]]; then
		GK_ARGS+=(--initramfs-overlay=/tmp/initramfs_overlay/${initramfs_overlay})
	fi
	if [[ -n ${clst_CCACHE} ]]; then
		GK_ARGS+=(--kernel-cc=/usr/lib/ccache/bin/gcc --utils-cc=/usr/lib/ccache/bin/gcc)
	fi
	if [[ -n ${clst_linuxrc} ]]; then
		GK_ARGS+=(--linuxrc=/tmp/linuxrc)
	fi
	if [[ -n ${clst_busybox_config} ]]; then
		GK_ARGS+=(--busybox-config=/tmp/busy-config)
	fi
	if [[ ${clst_target} == netboot ]]; then
		GK_ARGS+=(--netboot)

		if [[ -n ${clst_merge_path} ]]; then
			GK_ARGS+=(--initramfs-overlay="${clst_merge_path}")
		fi
	fi
	if [[ -n ${clst_VERBOSE} ]]; then
		GK_ARGS+=(--loglevel=2)
	fi

	if [[ -n ${clst_VERBOSE} ]]; then
		gk_callback_opts=(-vN)
	else
		gk_callback_opts=(-qN)
	fi
	if [[ -n ${clst_KERNCACHE} ]]; then
		gk_callback_opts+=(-kb)
	fi
	if [[ -n ${clst_FETCH} ]]; then
		gk_callback_opts+=(-f)
	fi

	if [[ -n ${kernel_merge} ]]; then
		gk_callback=${gk_callback_opts[@]}
		genkernel --callback="emerge ${gk_callback} ${kernel_merge}" \
			"${GK_ARGS[@]}" || exit 1
	else
		genkernel "${GK_ARGS[@]}" || exit 1
	fi
}

[ -n "${clst_ENVSCRIPT}" ] && source /tmp/envscript

# Set the timezone for the kernel build
rm /etc/localtime
cp -f /usr/share/zoneinfo/UTC /etc/localtime

eval "initramfs_overlay=\$clst_boot_kernel_${kname}_initramfs_overlay"
eval "kernel_merge=\$clst_boot_kernel_${kname}_packages"
eval "kernel_use=\$clst_boot_kernel_${kname}_use"
eval eval kernel_gk_kernargs=( \$clst_boot_kernel_${kname}_gk_kernargs )
eval eval kernel_dracut_kernargs=( \$clst_boot_kernel_${kname}_dracut_args )
eval "ksource=\$clst_boot_kernel_${kname}_sources"
eval "distkernel=\$clst_boot_kernel_${kname}_distkernel"

if [[ ${distkernel} = "yes" ]] ; then
  [[ -z ${ksource} ]] && ksource="sys-kernel/gentoo-kernel"
else
  [[ -z ${ksource} ]] && ksource="sys-kernel/gentoo-sources"
fi

kernel_version=$(portageq best_visible / "${ksource}")

if [[ -n ${clst_KERNCACHE} ]]; then
	mkdir -p "/tmp/kerncache/${kname}"
	pushd "/tmp/kerncache/${kname}" >/dev/null

	echo "${kernel_use}" > /tmp/USE
	echo "${kernel_version}" > /tmp/VERSION
	echo "${clst_kextraversion}" > /tmp/EXTRAVERSION

	if cmp -s {/tmp/,}USE && \
	   cmp -s {/tmp/,}VERSION && \
	   cmp -s {/tmp/,}EXTRAVERSION && \
	   cmp -s /var/tmp/${kname}.config CONFIG; then
		cached_kernel_found="true"
	fi

	rm -f /tmp/{USE,VERSION,EXTRAVERSION}
	popd >/dev/null
fi

if [[ ! ${cached_kernel_found} ]]; then
  if [[ ${distkernel} = "yes" ]] ; then
USE="-initramfs" run_merge --update "${ksource}"
  else
USE="symlink" run_merge --update "${ksource}"
  fi
fi

if [[ -n ${clst_KERNCACHE} ]]; then
	SOURCESDIR="/tmp/kerncache/${kname}/sources"
	if [[ ! ${cached_kernel_found} ]]; then
		echo "Moving kernel sources to ${SOURCESDIR} ..."

		rm -rf "${SOURCESDIR}"
		mv $(readlink -f /usr/src/linux) "${SOURCESDIR}"
	fi
	ln -snf "${SOURCESDIR}" /usr/src/linux
fi

if [[ ${distkernel} = "yes" ]] ; then
  # Build external kernel modules
  if [[ -n ${kernel_merge} ]]; then
    run_merge ${kernel_merge}
  fi

  # Kernel already built, let's run dracut to make initramfs
  distkernel_source_path=$(equery -Cq f ${ksource} | grep "/usr/src/linux-" -m1)
  distkernel_image_path=$(distkmerge_get_image_path)
  distkernel_version=${distkernel_source_path##"/usr/src/linux-"}

  DRACUT_ARGS=(
    "${kernel_dracut_kernargs[@]}"
    --force
    --kernel-image="${distkernel_source_path}/${distkernel_image_path}"
    --kver="${distkernel_version}"
  )

  dracut "${DRACUT_ARGS[@]}" || exit 1

  # Create minkernel package to mimic genkernel's behaviour
  cd /boot
  tar jcvf /tmp/kerncache/${kname}-kernel-initrd-${clst_version_stamp}.tar.bz2 System.map* config* initramfs* vmlinuz*
  cd /
  tar jcvf /tmp/kerncache/${kname}-modules-${clst_version_stamp}.tar.bz2 lib/modules

else
  if [[ -n ${clst_kextraversion} ]]; then
    echo "Setting EXTRAVERSION to ${clst_kextraversion}"

    if [[ -e /usr/src/linux/Makefile.bak ]]; then
      cp /usr/src/linux/Makefile{.bak,}
    else
      cp /usr/src/linux/Makefile{,.bak}
    fi
    sed -i -e "s:EXTRAVERSION \(=.*\):EXTRAVERSION \1-${clst_kextraversion}:" \
      /usr/src/linux/Makefile
  fi

  genkernel_compile
fi

# Write out CONFIG, USE, VERSION, and EXTRAVERSION files
if [[ -n ${clst_KERNCACHE} && ! ${cached_kernel_found} ]]; then
	pushd "/tmp/kerncache/${kname}" >/dev/null

	cp /var/tmp/${kname}.config CONFIG
	echo "${kernel_use}" > USE
	echo "${kernel_version}" > VERSION
	echo "${clst_kextraversion}" > EXTRAVERSION

	popd >/dev/null
fi

if [[ ! ${cached_kernel_found} ]]; then
	run_merge --deselect "${ksource}"
	# This was breaking multi-kernel iso builds, probably not needed
	# rm /usr/src/linux
fi