add early touchbook support, serial access is required, still some other bugs

Signed-off-by: Robert Nelson <robertcnelson@gmail.com>
pull/8/head
Robert Nelson 14 years ago
parent c580073e07
commit 530ba5a9e7

@ -162,6 +162,12 @@ case "$SYSTEM" in
MLO=$(cat ${TEMPDIR}/dl/bootloader | grep "${ABI}:2:MLO" | awk '{print $2}') MLO=$(cat ${TEMPDIR}/dl/bootloader | grep "${ABI}:2:MLO" | awk '{print $2}')
UBOOT=$(cat ${TEMPDIR}/dl/bootloader | grep "${ABI}:2:UBOOT" | awk '{print $2}') UBOOT=$(cat ${TEMPDIR}/dl/bootloader | grep "${ABI}:2:UBOOT" | awk '{print $2}')
;;
touchbook)
MLO=$(cat ${TEMPDIR}/dl/bootloader | grep "${ABI}:5:MLO" | awk '{print $2}')
UBOOT=$(cat ${TEMPDIR}/dl/bootloader | grep "${ABI}:5:UBOOT" | awk '{print $2}')
;; ;;
crane) crane)
@ -847,6 +853,17 @@ case "$UBOOT_TYPE" in
#with the panda, we just need the beta kernel, both dvi and serial work.. #with the panda, we just need the beta kernel, both dvi and serial work..
BETA_KERNEL=1 BETA_KERNEL=1
;;
touchbook)
SYSTEM=touchbook
unset IN_VALID_UBOOT
DO_UBOOT=1
#with the panda, we need the beta kernel and serial-more
BETA_KERNEL=1
SERIAL_MODE=1
;; ;;
crane) crane)
@ -905,6 +922,7 @@ required options:
--uboot <dev board> --uboot <dev board>
beagle - <Bx, C2/C3/C4, xMA, xMB> beagle - <Bx, C2/C3/C4, xMA, xMB>
panda - <dvi or serial> panda - <dvi or serial>
touchbook - <serial only>
--distro <distro> --distro <distro>
Debian: Debian:

Loading…
Cancel
Save