9e7b166704
This patch is to enlarge ext4 rootfs size to 30MB. Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
52 lines
1.6 KiB
Makefile
52 lines
1.6 KiB
Makefile
#
|
|
# Copyright (C) 2016 Jiang Yutang <jiangyutang1978@gmail.com>
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=uboot-layerscape-armv8_32b
|
|
PKG_VERSION:=2017.09
|
|
PKG_RELEASE:=1
|
|
|
|
# Layerscape ARMv8 platforms use 64-bit u-boot to support both 32-bit and 64-bit
|
|
# kernel/rootfs. Since LEDE could only provide 32-bit toolchain for 32-bit targets,
|
|
# 64-bit u-boot images git tree is provided here whose source code actually is
|
|
# uboot-layerscape's source code.
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/yangbolu1991/u-boot-lede.git
|
|
PKG_SOURCE_VERSION:=050c7f11e2ad1a005baa8816699a5c4543dab70c
|
|
PKG_MIRROR_HASH:=ebd63c29417616240090930d50bbce46956de8ddc3f2aa1b238da286ff66794a
|
|
|
|
PKG_MAINTAINER:=Yangbo Lu <yangbo.lu@nxp.com>
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
define Package/uboot-layerscape-armv8_32b
|
|
SECTION:=boot
|
|
CATEGORY:=Boot Loaders
|
|
DEPENDS:=@TARGET_layerscape_armv8_32b
|
|
TITLE:=U-Boot for ARMv8 32-bit based Layerscape boards
|
|
DEFAULT:=y
|
|
HIDDEN:=1
|
|
endef
|
|
|
|
define Build/Configure
|
|
|
|
endef
|
|
|
|
define Build/Compile
|
|
|
|
endef
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(STAGING_DIR_IMAGE)
|
|
$(CP) $(PKG_BUILD_DIR)/ls1043ardb-uboot.bin $(STAGING_DIR_IMAGE)/ls1043ardb-armv8_32b-uboot.bin
|
|
$(CP) $(PKG_BUILD_DIR)/ls1046ardb-uboot.bin $(STAGING_DIR_IMAGE)/ls1046ardb-armv8_32b-uboot.bin
|
|
$(CP) $(PKG_BUILD_DIR)/ls1012ardb-uboot.bin $(STAGING_DIR_IMAGE)/ls1012ardb-armv8_32b-uboot.bin
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,uboot-layerscape-armv8_32b))
|