diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2012-10-28 17:40:31 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-11-02 21:06:02 +0100 |
commit | 1ea9a8e233032782b843e8a91a119891cf3197a9 (patch) | |
tree | c780fd987cd6bd1732b657f8ad11f32dccfc303d | |
parent | 66f268f5f3194266fb37bedc0339a2ce0c3e8bbe (diff) | |
download | buildroot-novena-1ea9a8e233032782b843e8a91a119891cf3197a9.tar.gz buildroot-novena-1ea9a8e233032782b843e8a91a119891cf3197a9.zip |
Add AArch64 to the list of architectures
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | target/Config.in.arch | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/target/Config.in.arch b/target/Config.in.arch index 639327a31..ac2c0b599 100644 --- a/target/Config.in.arch +++ b/target/Config.in.arch @@ -23,6 +23,13 @@ config BR2_armeb http://www.arm.com/ http://en.wikipedia.org/wiki/ARM +config BR2_aarch64 + bool "AArch64" + help + Aarch64 is a 64-bit architecture developed by ARM Holdings. + http://www.arm.com/products/processors/instruction-set-architectures/armv8-architecture.php + http://en.wikipedia.org/wiki/ARM + config BR2_avr32 bool "AVR32" select BR2_SOFT_FLOAT @@ -580,6 +587,7 @@ config BR2_ARCH string default "arm" if BR2_arm default "armeb" if BR2_armeb + default "aarch64" if BR2_aarch64 default "avr32" if BR2_avr32 default "bfin" if BR2_bfin default "i386" if BR2_x86_i386 |