diff options
author | Mike Frysinger <michael.frysinger@analog.com> | 2007-12-24 16:54:48 +0800 |
---|---|---|
committer | Bryan Wu <bryan.wu@analog.com> | 2007-12-24 16:54:48 +0800 |
commit | 1545a1111a02b5aafe6f141e133a6269c5741285 (patch) | |
tree | f018c4b0c074c3e9ed72d887d74948a88165a9c5 /arch/blackfin/Makefile | |
parent | 54a1668ce53fe701f1d36651b591ced388e97275 (diff) | |
download | talos-obmc-linux-1545a1111a02b5aafe6f141e133a6269c5741285.tar.gz talos-obmc-linux-1545a1111a02b5aafe6f141e133a6269c5741285.zip |
[Blackfin] arch: add support for BF523/BF524/BF526
Signed-off-by: Mike Frysinger <michael.frysinger@analog.com>
Signed-off-by: Bryan Wu <bryan.wu@analog.com>
Diffstat (limited to 'arch/blackfin/Makefile')
-rw-r--r-- | arch/blackfin/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/blackfin/Makefile b/arch/blackfin/Makefile index c47e000f8324..0c9680eac8ef 100644 --- a/arch/blackfin/Makefile +++ b/arch/blackfin/Makefile @@ -21,7 +21,10 @@ KBUILD_DEFCONFIG := BF537-STAMP_defconfig # setup the machine name and the machine dependent settings machine-$(CONFIG_BF522) := bf527 +machine-$(CONFIG_BF523) := bf527 +machine-$(CONFIG_BF524) := bf527 machine-$(CONFIG_BF525) := bf527 +machine-$(CONFIG_BF526) := bf527 machine-$(CONFIG_BF527) := bf527 machine-$(CONFIG_BF531) := bf533 machine-$(CONFIG_BF532) := bf533 @@ -39,7 +42,10 @@ MACHINE := $(machine-y) export MACHINE cpu-$(CONFIG_BF522) := bf522 +cpu-$(CONFIG_BF523) := bf523 +cpu-$(CONFIG_BF524) := bf524 cpu-$(CONFIG_BF525) := bf525 +cpu-$(CONFIG_BF526) := bf526 cpu-$(CONFIG_BF527) := bf527 cpu-$(CONFIG_BF531) := bf531 cpu-$(CONFIG_BF532) := bf532 |