diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-02-10 19:30:55 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-02-10 19:30:55 +0000 |
commit | b0dc12db5d5f003f93e6c6f822e801c804d0ad7a (patch) | |
tree | 894076c84ed0b0ce916ae8eee9c7f0f3653b04f8 /target/device/Arm/Makefile.in | |
parent | 16e69a3df0af08f800045756e0c60ce3621c69a0 (diff) | |
download | buildroot-novena-b0dc12db5d5f003f93e6c6f822e801c804d0ad7a.tar.gz buildroot-novena-b0dc12db5d5f003f93e6c6f822e801c804d0ad7a.zip |
- add an arm integrator 926 thing qemu can deal with
Diffstat (limited to 'target/device/Arm/Makefile.in')
-rw-r--r-- | target/device/Arm/Makefile.in | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/target/device/Arm/Makefile.in b/target/device/Arm/Makefile.in new file mode 100644 index 000000000..7f85dac13 --- /dev/null +++ b/target/device/Arm/Makefile.in @@ -0,0 +1,14 @@ +ifeq ($(BR2_TARGET_ARM_INTEGRATOR_926),y) +LINUX26_KCONFIG:=target/device/Arm/linux26.integrator926.config +TARGETS+=linux26 + +ifndef UCLIBC_CONFIG_FILE +UCLIBC_CONFIG_FILE:=target/device/Arm/uClibc.integrator926.config +endif + +# pin some settings +BR2_ARM_EABI:=y +BR2_GNU_TARGET_SUFFIX:="linux-uclibcgnueabi" +BR2_DEFAULT_KERNEL_HEADERS:="2.6.20" +endif + |