################################################################################ # setup device defaults ################################################################################ # The TARGET_CPU variable controls which processor should be targeted for # generated code. case $TARGET_ARCH in arm) TARGET_CPU="cortex-a9" TARGET_FLOAT="hard" TARGET_FPU="neon-vfpv3" ;; esac # Kernel target KERNEL_TARGET="zImage" # kernel serial console EXTRA_CMDLINE="console=ttymxc0,115200 console=tty0" # debug tty path DEBUG_TTY="/dev/ttymxc0" # set the addon project ADDON_PROJECT="ARMv7"