I'm trying to get OpenWRT to compile for a OMAP Beagleboard target, when ever I do a make menuconfig I get the error, "ERROR: please fix target/linux/beagle/Makefile" My Makefile is as follows...
#
# Copyright (C) 2006 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
ARCH=arm
BOARD:=beagle
BOARDNAME:=Beagleboard
FEATURES:=jffs2 tgz
LINUX_VERSION:=2.6.29
include $(INCLUDE_DIR)/target.mk
define Target/Description
Beagleboard TI OMAP3530 ARM Cortex-A8
endef
KERNELNAME:="uImage"
$(eval $(call BuildTarget))
$(eval $(call $(if $(CONFIG_TARGET_ROOTFS_ISO),RequireCommand,Ignore),mkisofs, \
Please install mkisofs. \
))
Is there a way to get a more specific error message?
(Last edited by pvm on 13 Sep 2009, 21:16)