diff options
Diffstat (limited to 'create_image.sh')
-rwxr-xr-x | create_image.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/create_image.sh b/create_image.sh index f83c1e3..c3ec7d1 100755 --- a/create_image.sh +++ b/create_image.sh @@ -232,7 +232,7 @@ else cp ${TOOL_RES_PATH}/kernelconfig usr/src/linux/.config || handle_error "Error copying kernel config" echo "Building kernel" &>> ${LOG_FILE} - yes "" | linux32 chroot . make -C /usr/src/linux oldconfig &>> ${LOG_FILE} || handle_error "Error configuring kernel" + yes "" | linux32 chroot . make -C /usr/src/linux oldconfig &>> ${LOG_FILE} linux32 chroot . make -C /usr/src/linux -j${NUM_JOBS} &>> ${LOG_FILE} || handle_error "Error building kernel" echo "Installing kernel" &>> ${LOG_FILE} |