cleanup: KERNEL_SEL -> kernel_repo

Signed-off-by: Robert Nelson <robertcnelson@gmail.com>
pull/22/head
Robert Nelson 12 years ago
parent 8b56d22c4e
commit 4c54b06cfd

@ -267,11 +267,11 @@ function dl_kernel_image {
echo "-----------------------------" echo "-----------------------------"
if [ "${BETA_KERNEL}" ] ; then if [ "${BETA_KERNEL}" ] ; then
KERNEL_SEL="TESTING" kernel_repo="TESTING"
fi fi
if [ "${EXPERIMENTAL_KERNEL}" ] ; then if [ "${EXPERIMENTAL_KERNEL}" ] ; then
KERNEL_SEL="EXPERIMENTAL" kernel_repo="EXPERIMENTAL"
fi fi
if [ ! "${KERNEL_DEB}" ] ; then if [ ! "${KERNEL_DEB}" ] ; then
@ -282,7 +282,7 @@ function dl_kernel_image {
sed -i -e 's:81/deb/:81/dl/mirrors/deb/:g' ${TEMPDIR}/dl/LATEST-${kernel_subarch} sed -i -e 's:81/deb/:81/dl/mirrors/deb/:g' ${TEMPDIR}/dl/LATEST-${kernel_subarch}
fi fi
FTP_DIR=$(cat ${TEMPDIR}/dl/LATEST-${kernel_subarch} | grep "ABI:1 ${KERNEL_SEL}" | awk '{print $3}') FTP_DIR=$(cat ${TEMPDIR}/dl/LATEST-${kernel_subarch} | grep "ABI:1 ${kernel_repo}" | awk '{print $3}')
if [ "$RCNEEDOWN" ] ; then if [ "$RCNEEDOWN" ] ; then
#http://rcn-ee.homeip.net:81/dl/mirrors/deb/squeeze-armel/v3.2.6-x4/install-me.sh #http://rcn-ee.homeip.net:81/dl/mirrors/deb/squeeze-armel/v3.2.6-x4/install-me.sh
FTP_DIR=$(echo ${FTP_DIR} | awk -F'/' '{print $8}') FTP_DIR=$(echo ${FTP_DIR} | awk -F'/' '{print $8}')
@ -1519,7 +1519,6 @@ check_dtb_board () {
invalid_dtb=1 invalid_dtb=1
if [ -f "${DIR}"/hwpack/${dtb_board}.conf ] ; then if [ -f "${DIR}"/hwpack/${dtb_board}.conf ] ; then
source "${DIR}"/hwpack/${dtb_board}.conf source "${DIR}"/hwpack/${dtb_board}.conf
KERNEL_SEL="${kernel_repo}"
boot="${boot_image}" boot="${boot_image}"
populate_dtbs=1 populate_dtbs=1
unset invalid_dtb unset invalid_dtb
@ -1599,7 +1598,6 @@ function is_imx {
} }
function convert_uboot_to_dtb_board { function convert_uboot_to_dtb_board {
KERNEL_SEL="${kernel_repo}"
boot="${boot_image}" boot="${boot_image}"
populate_dtbs=1 populate_dtbs=1
} }
@ -1610,7 +1608,7 @@ function check_uboot_type {
unset USE_KMS unset USE_KMS
unset dtb_file unset dtb_file
unset need_dtbs unset need_dtbs
KERNEL_SEL="STABLE" kernel_repo="STABLE"
boot="bootz" boot="bootz"
unset spl_name unset spl_name
@ -1664,7 +1662,7 @@ function check_uboot_type {
USE_KMS=1 USE_KMS=1
unset HAS_OMAPFB_DSS2 unset HAS_OMAPFB_DSS2
KERNEL_SEL="TESTING" kernel_repo="TESTING"
;; ;;
bone) bone)
SYSTEM="bone" SYSTEM="bone"
@ -1691,7 +1689,7 @@ function check_uboot_type {
SERIAL_CONSOLE="${SERIAL},115200n8" SERIAL_CONSOLE="${SERIAL},115200n8"
dtb_file="am335x-bone.dtb" dtb_file="am335x-bone.dtb"
need_dtbs=1 need_dtbs=1
KERNEL_SEL="TESTING" kernel_repo="TESTING"
kernel_subarch="omap-psp" kernel_subarch="omap-psp"
@ -1758,14 +1756,14 @@ function check_uboot_type {
KMS_VIDEOB="video=HDMI-A-1" KMS_VIDEOB="video=HDMI-A-1"
usbnet_mem="32768" usbnet_mem="32768"
KERNEL_SEL="TESTING" kernel_repo="TESTING"
;; ;;
crane) crane)
SYSTEM="crane" SYSTEM="crane"
board="CRANEBOARD" board="CRANEBOARD"
is_omap is_omap
KERNEL_SEL="TESTING" kernel_repo="TESTING"
SERIAL_MODE=1 SERIAL_MODE=1
;; ;;
mx51evk) mx51evk)
@ -1777,7 +1775,7 @@ function check_uboot_type {
load_addr="0x90008000" load_addr="0x90008000"
dtb_addr="0x91ff0000" dtb_addr="0x91ff0000"
dtb_file="imx51-babbage.dtb" dtb_file="imx51-babbage.dtb"
KERNEL_SEL="TESTING" kernel_repo="TESTING"
SERIAL_MODE=1 SERIAL_MODE=1
need_dtbs=1 need_dtbs=1
;; ;;
@ -1801,7 +1799,7 @@ function check_uboot_type {
load_addr="0x70008000" load_addr="0x70008000"
dtb_addr="0x71ff0000" dtb_addr="0x71ff0000"
dtb_file="imx53-qsb.dtb" dtb_file="imx53-qsb.dtb"
KERNEL_SEL="TESTING" kernel_repo="TESTING"
SERIAL_MODE=1 SERIAL_MODE=1
need_dtbs=1 need_dtbs=1
;; ;;
@ -1820,7 +1818,7 @@ function check_uboot_type {
load_addr="0x10008000" load_addr="0x10008000"
dtb_addr="0x11ff0000" dtb_addr="0x11ff0000"
dtb_file="imx6q-sabrelite.dtb" dtb_file="imx6q-sabrelite.dtb"
KERNEL_SEL="TESTING" kernel_repo="TESTING"
SERIAL_MODE=1 SERIAL_MODE=1
need_dtbs=1 need_dtbs=1
boot_scr_wrapper=1 boot_scr_wrapper=1

Loading…
Cancel
Save