diff options
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2012-02-22 17:04:04 +0100 |
---|---|---|
committer | Nicolas Ferre <nicolas.ferre@atmel.com> | 2012-02-23 14:58:00 +0100 |
commit | d5e5a7f987458f42f24a557a0f4e35f94c43fc09 (patch) | |
tree | 3333b309128e08cc866b4920f60dbd5e90713464 /arch/arm/mach-at91/Makefile.boot | |
parent | e9bc91a5f8b38e3fc39f640a18af19c9300ca042 (diff) | |
download | blackbird-obmc-linux-d5e5a7f987458f42f24a557a0f4e35f94c43fc09.tar.gz blackbird-obmc-linux-d5e5a7f987458f42f24a557a0f4e35f94c43fc09.zip |
ARM: at91: properly sort dtb files in Makefile.boot
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Diffstat (limited to 'arch/arm/mach-at91/Makefile.boot')
-rw-r--r-- | arch/arm/mach-at91/Makefile.boot | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/arm/mach-at91/Makefile.boot b/arch/arm/mach-at91/Makefile.boot index be7200b8da19..0da66ca4a4f8 100644 --- a/arch/arm/mach-at91/Makefile.boot +++ b/arch/arm/mach-at91/Makefile.boot @@ -13,5 +13,10 @@ params_phys-y := 0x20000100 initrd_phys-y := 0x20410000 endif -dtb-$(CONFIG_MACH_AT91SAM_DT) += at91sam9m10g45ek.dtb usb_a9g20.dtb +# Keep dtb files sorted alphabetically for each SoC +# sam9g20 +dtb-$(CONFIG_MACH_AT91SAM_DT) += usb_a9g20.dtb +# sam9g45 +dtb-$(CONFIG_MACH_AT91SAM_DT) += at91sam9m10g45ek.dtb +# sam9x5 dtb-$(CONFIG_MACH_AT91SAM_DT) += at91sam9g25ek.dtb |