2013-01-08 22:20:16 +00:00
|
|
|
#
|
2016-10-13 10:52:20 +00:00
|
|
|
# Copyright (C) 2012-2016 OpenWrt.org
|
|
|
|
# Copyright (C) 2016 LEDE-project.org
|
2013-01-08 22:20:16 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2015-08-05 13:55:52 +00:00
|
|
|
|
|
|
|
JFFS2_BLOCKSIZE = 128k
|
|
|
|
|
2013-01-08 22:20:16 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
include $(INCLUDE_DIR)/image.mk
|
|
|
|
|
2016-07-20 08:04:03 +00:00
|
|
|
KERNEL_LOADADDR := 0x00008000
|
2015-02-05 11:22:43 +00:00
|
|
|
|
2018-01-24 14:32:58 +00:00
|
|
|
SIGNATURE:=$(shell printf "%.8s" $(SOURCE_DATE_EPOCH))
|
|
|
|
|
2016-08-11 15:20:54 +00:00
|
|
|
define Build/dtb
|
2018-01-24 14:32:58 +00:00
|
|
|
$(call Image/BuildDTB,$(DTS_DIR)/$(DEVICE_DTS).dts,$@.dtb)
|
2016-08-11 15:20:54 +00:00
|
|
|
endef
|
|
|
|
|
2016-08-09 13:23:24 +00:00
|
|
|
# SD-Card Images:
|
|
|
|
# these values are optimized for a 4GB labeled sdcard that actually holds 7744512 sectors of 512 byte
|
|
|
|
# MBR: 2048 sectors
|
|
|
|
# Partition 1: 32768 sectors
|
|
|
|
# Partition 2: 98304 sectors (configurable)
|
|
|
|
|
2018-02-14 16:34:38 +00:00
|
|
|
define Build/boot-scr
|
|
|
|
rm -f $@-boot.scr
|
mvebu: new subtarget cortex A53
This commit introduces new subtarget for Marvell EBU Armada Cortex A53
processor based devices.
The first device is Globalscale ESPRESSObin. Some hardware specs:
SoC: Marvell Armada 3700LP (88F3720) dual core ARM Cortex A53
processor up to 1.2GHz
RAM: 512MB, 1GB or 2GB DDR3
Storage: SATA interface
µSD card slot with footprint for an optional 4GB EMMC
4MB SPI NOR flash for bootloader
Ethernet: Topaz Networking Switch (88E6341) with 3x GbE ports
Connectors: USB 3.0
USB 2.0
µUSB port connected to PL2303SA (USB to serial bridge
controller) for UART access
Expansion: 2x 46-pin GPIO headers for accessories and shields with
I2C, GPIOs, PWM, UART, SPI, MMC, etc
MiniPCIe slot
Misc: Reset button, JTAG interface
Currently booting only from µSD card is supported.
The boards depending on date of dispatch can come with various U-Boot
versions. For the newest version 2017.03-armada-17.10 no manual
intervention should be needed to boot OpenWrt image. For the older ones
it's necessary to modify default U-Boot environment:
1. Interrupt boot process to run U-Boot command line,
2. Run following commands:
(for version 2017.03-armada-17.06 and 2017.03-armada-17.08)
setenv bootcmd "load mmc 0:1 0x4d00000 boot.scr; source 0x4d00000"
saveenv
(for version 2015.01-armada-17.02 and 2015.01-armada-17.04)
setenv bootargs "console=ttyMV0,115200 root=/dev/mmcblk0p2 rw rootwait"
setenv bootcmd "ext4load mmc 0:1 ${fdt_addr} armada-3720-espressobin.dtb; ext4load mmc 0:1 ${kernel_addr} Image; booti ${kernel_addr} - ${fdt_addr}"
saveenv
3. Poweroff, insert SD card with OpenWrt image, boot and enjoy.
Signed-off-by: Tomasz Maciej Nowak <tomek_n@o2.pl>
2018-03-07 21:10:02 +00:00
|
|
|
sed -e 's#@ROOT@#$(SIGNATURE)#g' \
|
|
|
|
$(DEVICE_NAME).bootscript > $@-new.bootscript
|
|
|
|
mkimage -A arm -O linux -T script -C none -a 0 -e 0 -d $@-new.bootscript $@-boot.scr
|
2017-04-06 18:13:31 +00:00
|
|
|
endef
|
|
|
|
|
2016-08-09 13:23:24 +00:00
|
|
|
define Build/boot-img
|
|
|
|
rm -f $@.boot
|
|
|
|
mkfs.fat -C $@.boot 16384
|
2017-05-22 15:04:19 +00:00
|
|
|
$(foreach dts,$(DEVICE_DTS), mcopy -i $@.boot $(DTS_DIR)/$(dts).dtb ::$(dts).dtb;)
|
mvebu: new subtarget cortex A53
This commit introduces new subtarget for Marvell EBU Armada Cortex A53
processor based devices.
The first device is Globalscale ESPRESSObin. Some hardware specs:
SoC: Marvell Armada 3700LP (88F3720) dual core ARM Cortex A53
processor up to 1.2GHz
RAM: 512MB, 1GB or 2GB DDR3
Storage: SATA interface
µSD card slot with footprint for an optional 4GB EMMC
4MB SPI NOR flash for bootloader
Ethernet: Topaz Networking Switch (88E6341) with 3x GbE ports
Connectors: USB 3.0
USB 2.0
µUSB port connected to PL2303SA (USB to serial bridge
controller) for UART access
Expansion: 2x 46-pin GPIO headers for accessories and shields with
I2C, GPIOs, PWM, UART, SPI, MMC, etc
MiniPCIe slot
Misc: Reset button, JTAG interface
Currently booting only from µSD card is supported.
The boards depending on date of dispatch can come with various U-Boot
versions. For the newest version 2017.03-armada-17.10 no manual
intervention should be needed to boot OpenWrt image. For the older ones
it's necessary to modify default U-Boot environment:
1. Interrupt boot process to run U-Boot command line,
2. Run following commands:
(for version 2017.03-armada-17.06 and 2017.03-armada-17.08)
setenv bootcmd "load mmc 0:1 0x4d00000 boot.scr; source 0x4d00000"
saveenv
(for version 2015.01-armada-17.02 and 2015.01-armada-17.04)
setenv bootargs "console=ttyMV0,115200 root=/dev/mmcblk0p2 rw rootwait"
setenv bootcmd "ext4load mmc 0:1 ${fdt_addr} armada-3720-espressobin.dtb; ext4load mmc 0:1 ${kernel_addr} Image; booti ${kernel_addr} - ${fdt_addr}"
saveenv
3. Poweroff, insert SD card with OpenWrt image, boot and enjoy.
Signed-off-by: Tomasz Maciej Nowak <tomek_n@o2.pl>
2018-03-07 21:10:02 +00:00
|
|
|
mcopy -i $@.boot $(IMAGE_KERNEL) ::$(KERNEL_NAME)
|
2018-02-14 16:34:38 +00:00
|
|
|
-mcopy -i $@.boot $@-boot.scr ::boot.scr
|
2016-08-09 13:23:24 +00:00
|
|
|
endef
|
|
|
|
|
mvebu: new subtarget cortex A53
This commit introduces new subtarget for Marvell EBU Armada Cortex A53
processor based devices.
The first device is Globalscale ESPRESSObin. Some hardware specs:
SoC: Marvell Armada 3700LP (88F3720) dual core ARM Cortex A53
processor up to 1.2GHz
RAM: 512MB, 1GB or 2GB DDR3
Storage: SATA interface
µSD card slot with footprint for an optional 4GB EMMC
4MB SPI NOR flash for bootloader
Ethernet: Topaz Networking Switch (88E6341) with 3x GbE ports
Connectors: USB 3.0
USB 2.0
µUSB port connected to PL2303SA (USB to serial bridge
controller) for UART access
Expansion: 2x 46-pin GPIO headers for accessories and shields with
I2C, GPIOs, PWM, UART, SPI, MMC, etc
MiniPCIe slot
Misc: Reset button, JTAG interface
Currently booting only from µSD card is supported.
The boards depending on date of dispatch can come with various U-Boot
versions. For the newest version 2017.03-armada-17.10 no manual
intervention should be needed to boot OpenWrt image. For the older ones
it's necessary to modify default U-Boot environment:
1. Interrupt boot process to run U-Boot command line,
2. Run following commands:
(for version 2017.03-armada-17.06 and 2017.03-armada-17.08)
setenv bootcmd "load mmc 0:1 0x4d00000 boot.scr; source 0x4d00000"
saveenv
(for version 2015.01-armada-17.02 and 2015.01-armada-17.04)
setenv bootargs "console=ttyMV0,115200 root=/dev/mmcblk0p2 rw rootwait"
setenv bootcmd "ext4load mmc 0:1 ${fdt_addr} armada-3720-espressobin.dtb; ext4load mmc 0:1 ${kernel_addr} Image; booti ${kernel_addr} - ${fdt_addr}"
saveenv
3. Poweroff, insert SD card with OpenWrt image, boot and enjoy.
Signed-off-by: Tomasz Maciej Nowak <tomek_n@o2.pl>
2018-03-07 21:10:02 +00:00
|
|
|
define Build/boot-img-ext4
|
|
|
|
rm -fR $@.boot
|
|
|
|
mkdir -p $@.boot
|
|
|
|
$(foreach dts,$(DEVICE_DTS), $(CP) $(DTS_DIR)/$(dts).dtb $@.boot;)
|
|
|
|
$(CP) $(IMAGE_KERNEL) $@.boot/$(KERNEL_NAME)
|
|
|
|
-$(CP) $@-boot.scr $@.boot/boot.scr
|
|
|
|
make_ext4fs -J -l 16384K $@.bootimg $@.boot
|
|
|
|
endef
|
|
|
|
|
2016-08-09 13:23:24 +00:00
|
|
|
define Build/sdcard-img
|
2018-02-14 16:28:09 +00:00
|
|
|
if [ -n "$(UBOOT)" ]; then UBOOT="$(STAGING_DIR_IMAGE)/$(UBOOT)"; fi; \
|
2016-08-09 13:23:24 +00:00
|
|
|
ROOTFS_SIZE=$$(( $(CONFIG_TARGET_ROOTFS_PARTSIZE) * 1024 * 2 )); \
|
2018-01-24 14:32:58 +00:00
|
|
|
SIGNATURE="$(SIGNATURE)" \
|
2016-09-08 12:19:34 +00:00
|
|
|
./gen_mvebu_sdcard_img.sh $@ \
|
2018-02-14 16:28:09 +00:00
|
|
|
$$UBOOT \
|
2016-08-09 13:23:24 +00:00
|
|
|
c 32768 $@.boot \
|
2016-09-08 12:19:34 +00:00
|
|
|
83 $$ROOTFS_SIZE $(IMAGE_ROOTFS)
|
2016-08-09 13:23:24 +00:00
|
|
|
endef
|
2016-08-11 15:20:54 +00:00
|
|
|
|
mvebu: new subtarget cortex A53
This commit introduces new subtarget for Marvell EBU Armada Cortex A53
processor based devices.
The first device is Globalscale ESPRESSObin. Some hardware specs:
SoC: Marvell Armada 3700LP (88F3720) dual core ARM Cortex A53
processor up to 1.2GHz
RAM: 512MB, 1GB or 2GB DDR3
Storage: SATA interface
µSD card slot with footprint for an optional 4GB EMMC
4MB SPI NOR flash for bootloader
Ethernet: Topaz Networking Switch (88E6341) with 3x GbE ports
Connectors: USB 3.0
USB 2.0
µUSB port connected to PL2303SA (USB to serial bridge
controller) for UART access
Expansion: 2x 46-pin GPIO headers for accessories and shields with
I2C, GPIOs, PWM, UART, SPI, MMC, etc
MiniPCIe slot
Misc: Reset button, JTAG interface
Currently booting only from µSD card is supported.
The boards depending on date of dispatch can come with various U-Boot
versions. For the newest version 2017.03-armada-17.10 no manual
intervention should be needed to boot OpenWrt image. For the older ones
it's necessary to modify default U-Boot environment:
1. Interrupt boot process to run U-Boot command line,
2. Run following commands:
(for version 2017.03-armada-17.06 and 2017.03-armada-17.08)
setenv bootcmd "load mmc 0:1 0x4d00000 boot.scr; source 0x4d00000"
saveenv
(for version 2015.01-armada-17.02 and 2015.01-armada-17.04)
setenv bootargs "console=ttyMV0,115200 root=/dev/mmcblk0p2 rw rootwait"
setenv bootcmd "ext4load mmc 0:1 ${fdt_addr} armada-3720-espressobin.dtb; ext4load mmc 0:1 ${kernel_addr} Image; booti ${kernel_addr} - ${fdt_addr}"
saveenv
3. Poweroff, insert SD card with OpenWrt image, boot and enjoy.
Signed-off-by: Tomasz Maciej Nowak <tomek_n@o2.pl>
2018-03-07 21:10:02 +00:00
|
|
|
define Build/sdcard-img-ext4
|
|
|
|
if [ -n "$(UBOOT)" ]; then UBOOT="$(STAGING_DIR_IMAGE)/$(UBOOT)"; fi; \
|
|
|
|
ROOTFS_SIZE=$$(( $(CONFIG_TARGET_ROOTFS_PARTSIZE) * 1024 * 2 )); \
|
|
|
|
SIGNATURE="$(SIGNATURE)" \
|
|
|
|
./gen_mvebu_sdcard_img.sh $@ \
|
|
|
|
$$UBOOT \
|
|
|
|
83 32768 $@.bootimg \
|
|
|
|
83 $$ROOTFS_SIZE $(IMAGE_ROOTFS)
|
|
|
|
endef
|
|
|
|
|
2017-06-02 16:31:06 +00:00
|
|
|
define Build/omnia-medkit-initramfs
|
|
|
|
$(TAR) -c -T /dev/null -f $@
|
|
|
|
rm -rf $(dir $(IMAGE_KERNEL))boot
|
|
|
|
mkdir -p $(dir $(IMAGE_KERNEL))boot/boot/
|
|
|
|
cp $(KDIR)/zImage-initramfs $(dir $(IMAGE_KERNEL))boot/boot/zImage
|
|
|
|
cp $(DTS_DIR)/$(DEVICE_DTS).dtb $(dir $(IMAGE_KERNEL))boot/boot/dtb
|
|
|
|
$(TAR) -rp --numeric-owner --owner=0 --group=0 --sort=name \
|
|
|
|
$(if $(SOURCE_DATE_EPOCH),--mtime="@$(SOURCE_DATE_EPOCH)") \
|
|
|
|
--file=$@ -C $(dir $(IMAGE_KERNEL))boot/ .
|
|
|
|
endef
|
|
|
|
|
2016-07-20 08:04:03 +00:00
|
|
|
define Device/Default
|
2016-07-26 06:36:45 +00:00
|
|
|
PROFILES := Default
|
2016-07-20 08:04:03 +00:00
|
|
|
DEVICE_DTS := $(1)
|
|
|
|
BOARD_NAME = $$(DEVICE_DTS)
|
|
|
|
KERNEL_NAME := zImage
|
|
|
|
KERNEL := kernel-bin | append-dtb | uImage none
|
2016-11-21 10:59:37 +00:00
|
|
|
SUPPORTED_DEVICES = $$(DEVICE_DTS)
|
2018-03-14 21:07:08 +00:00
|
|
|
UBOOT :=
|
2014-06-27 13:00:25 +00:00
|
|
|
endef
|
2018-03-14 21:07:08 +00:00
|
|
|
DEVICE_VARS += UBOOT
|
2016-07-20 08:04:03 +00:00
|
|
|
|
|
|
|
define Device/UBI
|
|
|
|
IMAGES := sysupgrade.bin
|
2016-11-21 10:59:37 +00:00
|
|
|
IMAGE/sysupgrade.bin := sysupgrade-tar | append-metadata
|
2016-07-20 08:04:03 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Device/UBI-factory
|
|
|
|
$(Device/UBI)
|
2016-09-12 16:20:50 +00:00
|
|
|
UBINIZE_OPTS := -E 5
|
2016-07-20 08:04:03 +00:00
|
|
|
IMAGES += factory.img
|
2016-09-11 17:05:20 +00:00
|
|
|
IMAGE/factory.img := append-kernel | pad-to $$$$(KERNEL_SIZE) | append-ubi | pad-to $$$$(PAGESIZE)
|
2016-07-20 08:04:03 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Device/NAND-128K
|
|
|
|
$(Device/UBI)
|
2016-09-04 06:56:05 +00:00
|
|
|
BLOCKSIZE := 128k
|
2016-07-20 08:04:03 +00:00
|
|
|
PAGESIZE := 2048
|
|
|
|
SUBPAGESIZE := 512
|
|
|
|
VID_HDR_OFFSET := 2048
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Device/NAND-256K
|
|
|
|
$(Device/UBI)
|
2016-09-04 06:56:05 +00:00
|
|
|
BLOCKSIZE := 256k
|
2016-07-20 08:04:03 +00:00
|
|
|
PAGESIZE := 4096
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Device/NAND-512K
|
|
|
|
$(Device/UBI)
|
2016-09-04 06:56:05 +00:00
|
|
|
BLOCKSIZE := 512k
|
2016-07-20 08:04:03 +00:00
|
|
|
PAGESIZE := 4096
|
|
|
|
endef
|
|
|
|
|
2018-03-07 21:10:01 +00:00
|
|
|
include cortex-a9.mk
|
mvebu: new subtarget cortex A53
This commit introduces new subtarget for Marvell EBU Armada Cortex A53
processor based devices.
The first device is Globalscale ESPRESSObin. Some hardware specs:
SoC: Marvell Armada 3700LP (88F3720) dual core ARM Cortex A53
processor up to 1.2GHz
RAM: 512MB, 1GB or 2GB DDR3
Storage: SATA interface
µSD card slot with footprint for an optional 4GB EMMC
4MB SPI NOR flash for bootloader
Ethernet: Topaz Networking Switch (88E6341) with 3x GbE ports
Connectors: USB 3.0
USB 2.0
µUSB port connected to PL2303SA (USB to serial bridge
controller) for UART access
Expansion: 2x 46-pin GPIO headers for accessories and shields with
I2C, GPIOs, PWM, UART, SPI, MMC, etc
MiniPCIe slot
Misc: Reset button, JTAG interface
Currently booting only from µSD card is supported.
The boards depending on date of dispatch can come with various U-Boot
versions. For the newest version 2017.03-armada-17.10 no manual
intervention should be needed to boot OpenWrt image. For the older ones
it's necessary to modify default U-Boot environment:
1. Interrupt boot process to run U-Boot command line,
2. Run following commands:
(for version 2017.03-armada-17.06 and 2017.03-armada-17.08)
setenv bootcmd "load mmc 0:1 0x4d00000 boot.scr; source 0x4d00000"
saveenv
(for version 2015.01-armada-17.02 and 2015.01-armada-17.04)
setenv bootargs "console=ttyMV0,115200 root=/dev/mmcblk0p2 rw rootwait"
setenv bootcmd "ext4load mmc 0:1 ${fdt_addr} armada-3720-espressobin.dtb; ext4load mmc 0:1 ${kernel_addr} Image; booti ${kernel_addr} - ${fdt_addr}"
saveenv
3. Poweroff, insert SD card with OpenWrt image, boot and enjoy.
Signed-off-by: Tomasz Maciej Nowak <tomek_n@o2.pl>
2018-03-07 21:10:02 +00:00
|
|
|
include cortex-a53.mk
|
2018-03-26 09:37:58 +00:00
|
|
|
include cortex-a72.mk
|
2017-06-02 16:31:06 +00:00
|
|
|
|
2013-01-08 22:20:16 +00:00
|
|
|
$(eval $(call BuildImage))
|