|
Lines 206-213
Link Here
|
| 206 |
if ! isTrue "${CMD_NOINSTALL}" |
206 |
if ! isTrue "${CMD_NOINSTALL}" |
| 207 |
then |
207 |
then |
| 208 |
cp "${KERNEL_BINARY}" "/boot/kernel-${KV}" || gen_die 'Could not copy the kernel binary to /boot!' |
208 |
cp "${KERNEL_BINARY}" "/boot/kernel-${KV}" || gen_die 'Could not copy the kernel binary to /boot!' |
|
|
209 |
cp "System.map" "/boot/System.map-${KV}" || gen_die 'Could not copy System.map to /boot!' |
| 209 |
else |
210 |
else |
| 210 |
cp "${KERNEL_BINARY}" "${TEMP}/kernel-${KV}" || gen_die "Could not copy the kernel binary to ${TEMP}!" |
211 |
cp "${KERNEL_BINARY}" "${TEMP}/kernel-${KV}" || gen_die "Could not copy the kernel binary to ${TEMP}!" |
|
|
212 |
cp "System.map" "${TEMP}/System.map-${KV}" || gen_die "Could not copy System.map to ${TEMP}!" |
| 211 |
fi |
213 |
fi |
| 212 |
} |
214 |
} |
| 213 |
|
215 |
|