6a7b20199fefe12b1892c7f6a6d9749603619566
[openwrt/staging/dedeckeh.git] / target / linux / omap / image / Makefile
1 #
2 # Copyright (C) 2012-2014 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 include $(TOPDIR)/rules.mk
8 include $(INCLUDE_DIR)/image.mk
9
10 FAT32_BLOCK_SIZE=1024
11 FAT32_BLOCKS=$(shell echo $$(($(CONFIG_OMAP_SD_BOOT_PARTSIZE)*1024*1024/$(FAT32_BLOCK_SIZE))))
12
13 UBIFS_OPTS = -F -m 2048 -e 124KiB -c 4096 -U
14 UBI_OPTS = -m 2048 -p 128KiB -s 512 -O 2048
15
16 define Build/omap-sdcard
17 rm -f $@.boot
18 mkfs.fat $@.boot -C $(FAT32_BLOCKS)
19
20 mcopy -i $@.boot $(STAGING_DIR_IMAGE)/$(DEVICE_NAME)/MLO ::MLO
21 mcopy -i $@.boot $(STAGING_DIR_IMAGE)/$(DEVICE_NAME)/u-boot.img ::u-boot.img
22 mcopy -i $@.boot $(STAGING_DIR_IMAGE)/$(DEVICE_NAME)/boot.scr ::boot.scr
23 mmd -i $@.boot ::/dtbs
24 mcopy -i $@.boot $(DTS_DIR)/$(DEVICE_DTS).dtb ::/dtbs/$(DEVICE_DTS).dtb
25 mcopy -i $@.boot $(IMAGE_KERNEL) ::/zImage
26 ./gen_omap_sdcard_img.sh $@ \
27 $@.boot \
28 $(IMAGE_ROOTFS) \
29 $(CONFIG_OMAP_SD_BOOT_PARTSIZE) \
30 $(CONFIG_TARGET_ROOTFS_PARTSIZE)
31 rm -f $@.boot
32 endef
33
34 define Device/Default
35 PROFILES := Default
36 KERNEL_NAME := zImage
37 KERNEL := kernel-bin
38 IMAGES := sdcard.img.gz
39 IMAGE/sdcard.img.gz := omap-sdcard | append-metadata | gzip
40 SUPPORTED_DEVICES = $(subst _,$(comma),$(1))
41 endef
42
43 #uboot-omap-am335x_evm uboot-omap-omap3_beagle uboot-omap-omap3_overo uboot-omap-omap4_panda
44
45 define Device/ti_am335x-evm
46 DEVICE_VENDOR := Texas Instruments
47 DEVICE_MODEL := AM335x EVM
48 DEVICE_DTS := am335x-evm
49 endef
50
51 TARGET_DEVICES += ti_am335x-evm
52
53 define Device/ti_am335x-bone-black
54 DEVICE_VENDOR := Texas Instruments
55 DEVICE_MODEL := AM335x BeagleBone Black
56 DEVICE_DTS := am335x-boneblack
57 endef
58
59 TARGET_DEVICES += ti_am335x-bone-black
60
61 define Device/ti_omap4-panda
62 DEVICE_VENDOR := PandaBoard.org
63 DEVICE_MODEL := OMAP4 TI pandaboard
64 DEVICE_DTS := omap4-panda
65 DEVICE_PACKAGES := kmod-usb-net-smsc95xx
66 endef
67
68 TARGET_DEVICES += ti_omap4-panda
69
70 define Device/ti_omap3-beagle
71 DEVICE_VENDOR := BeagleBoard.org
72 DEVICE_MODEL := OMAP3 TI beagleboard
73 DEVICE_DTS := omap3-beagle
74 # beagleboard doesn't have a network interface, support most common usb net
75 DEVICE_PACKAGES := kmod-usb-net \
76 kmod-usb-net-asix kmod-usb-net-asix-ax88179 kmod-usb-net-hso \
77 kmod-usb-net-kaweth kmod-usb-net-pegasus kmod-usb-net-mcs7830 \
78 kmod-usb-net-smsc95xx kmod-usb-net-dm9601-ether
79 endef
80
81 TARGET_DEVICES += ti_omap3-beagle
82
83 $(eval $(call BuildImage))