diff options
author | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2008-03-18 11:38:36 +0000 |
---|---|---|
committer | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2008-03-18 11:38:36 +0000 |
commit | fe87235dfe3adacf946d3e380e0637231ed54e35 (patch) | |
tree | 0fac2cfbc1e62acd87515e861e88f2001dd4103f /target/device/jp | |
parent | bd10a460b34237236467b66f48c70978afe1da23 (diff) | |
download | buildroot-novena-fe87235dfe3adacf946d3e380e0637231ed54e35.tar.gz buildroot-novena-fe87235dfe3adacf946d3e380e0637231ed54e35.zip |
Use BOARD_PATH instead of JP_Q5_PATH
Diffstat (limited to 'target/device/jp')
-rw-r--r-- | target/device/jp/q5/Makefile.in | 11 | ||||
-rw-r--r-- | target/device/jp/q5/linux.mk | 2 |
2 files changed, 7 insertions, 6 deletions
diff --git a/target/device/jp/q5/Makefile.in b/target/device/jp/q5/Makefile.in index ed562f223..a95b24546 100644 --- a/target/device/jp/q5/Makefile.in +++ b/target/device/jp/q5/Makefile.in @@ -1,9 +1,10 @@ -JP_Q5_PATH=target/device/jp/q5 +#JP_Q5_PATH=target/device/jp/q5 +BOARD_PATH=target/device/jp/q5 -BR2_PACKAGE_BUSYBOX_CONFIG=$(JP_Q5_PATH)/busybox.config -UCLIBC_CONFIG_FILE=$(JP_Q5_PATH)/uClibc.config.$(ARCH) +BR2_PACKAGE_BUSYBOX_CONFIG=$(BOARD_PATH)/busybox.config +UCLIBC_CONFIG_FILE=$(BOARD_PATH)/uClibc.config.$(ARCH) -TARGET_SKELETON=$(JP_Q5_PATH)/target_skeleton -TARGET_DEVICE_TABLE=$(JP_Q5_PATH)/device_table.txt +TARGET_SKELETON=$(BOARD_PATH)/target_skeleton +TARGET_DEVICE_TABLE=$(BOARD_PATH)/device_table.txt TARGETS+=linux diff --git a/target/device/jp/q5/linux.mk b/target/device/jp/q5/linux.mk index 512aba083..0658596b0 100644 --- a/target/device/jp/q5/linux.mk +++ b/target/device/jp/q5/linux.mk @@ -32,7 +32,7 @@ LINUX_KERNEL=linux-kernel-$(LINUX_VERSION)-$(ARCH).srec # Linux kernel configuration file -LINUX_KCONFIG=$(JP_Q5_PATH)/linux.config +LINUX_KCONFIG=$(BOARD_PATH)/linux.config # kernel patches LINUX_PATCH_DIR=target/device/jp/q5/kernel-patches-$(DOWNLOAD_LINUX_VERSION)/ |