mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-01 00:45:28 +00:00
b69df1eee0
All patches have been dropped, they're either redundant (e.g. due to the
new and unset CONFIG_SPL_FAT_WRITE), break compilation (thumb hacks) or
have been applied upstream.
The defconfig for am335x_boneblack has been removed upstream [0], so use
am335x_evm for boneblack too.
Size changes (before, after, file):
ti_am335x-evm and ti_am335x-bone-black:
79804 110832 MLO
623836 756148 u-boot.img
ti_omap3-beagle:
54148 57708 MLO
496272 665728 u-boot.img
ti_omap4-panda:
39356 40204 MLO
284648 366672 u-boot.img
Tested on boneblack, which has the biggest spl size increase. The beagle and
panda spl sizes seem reasonable to not break booting.
[0] 8fa7f65dd0
Signed-off-by: Andre Heider <a.heider@gmail.com>
59 lines
1.3 KiB
Makefile
59 lines
1.3 KiB
Makefile
#
|
|
# Copyright (C) 2012-2013 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
PKG_VERSION:=2019.10
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_HASH:=8d6d6070739522dd236cba7055b8736bfe92b4fac0ea18ad809829ca79667014
|
|
|
|
include $(INCLUDE_DIR)/u-boot.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define U-Boot/Default
|
|
BUILD_TARGET:=omap
|
|
UBOOT_IMAGE:=u-boot.img MLO
|
|
UENV:=default
|
|
endef
|
|
|
|
define U-Boot/omap4_panda
|
|
NAME:=Pandaboard
|
|
BUILD_DEVICES:=ti_omap4-panda
|
|
endef
|
|
|
|
define U-Boot/am335x_evm
|
|
NAME:=AM335x EVM
|
|
BUILD_DEVICES:=ti_am335x-evm ti_am335x-bone-black
|
|
endef
|
|
|
|
define U-Boot/omap3_overo
|
|
NAME:=Gumstix Overo
|
|
endef
|
|
|
|
define U-Boot/omap3_beagle
|
|
NAME:=BeagleBoard
|
|
BUILD_DEVICES:=ti_omap3-beagle
|
|
endef
|
|
|
|
UBOOT_TARGETS:=omap4_panda am335x_evm omap3_overo omap3_beagle
|
|
|
|
define Build/InstallDev
|
|
$(foreach device,$(BUILD_DEVICES), \
|
|
$(INSTALL_DIR) $(STAGING_DIR_IMAGE)/$(device)
|
|
)
|
|
$(foreach device,$(BUILD_DEVICES), \
|
|
$(CP) $(patsubst %,$(PKG_BUILD_DIR)/%,$(UBOOT_IMAGE)) $(STAGING_DIR_IMAGE)/$(device)/
|
|
)
|
|
$(foreach device,$(BUILD_DEVICES), \
|
|
$(CP) ./files/uEnv-$(UENV).txt $(STAGING_DIR_IMAGE)/$(device)/uEnv.txt
|
|
)
|
|
endef
|
|
|
|
$(eval $(call BuildPackage/U-Boot))
|