initial buildroot for linux 5.15

This commit is contained in:
Huan.Feng
2021-12-06 14:12:13 +08:00
parent d7767d594e
commit 7b6fc358fa
12736 changed files with 508822 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
config BR2_PACKAGE_HOST_MXSLDR
bool "host mxsldr"
depends on BR2_arm || BR2_armeb
depends on BR2_HOST_GCC_AT_LEAST_4_9 # host-libusb
help
This package contains tools to download and execute code on
Freescale i.MX23 and i.MX28 SoC's through the Serial
Download Protocol.
https://gitlab.denx.de/denx/mxsldr
comment "host mxsldr needs a toolchain w/ host gcc >= 4.9"
depends on BR2_arm || BR2_armeb
depends on !BR2_HOST_GCC_AT_LEAST_4_9
+21
View File
@@ -0,0 +1,21 @@
################################################################################
#
# mxsldr
#
################################################################################
MXSLDR_VERSION = 2793a657ab7a22487d21c1b020957806f8ae8383
MXSLDR_SITE = git://git.denx.de/mxsldr.git
MXSLDR_LICENSE = GPL-2.0+
MXSLDR_LICENSE_FILES = COPYING
HOST_MXSLDR_DEPENDENCIES = host-libusb host-pkgconf
define HOST_MXSLDR_BUILD_CMDS
$(HOST_CONFIGURE_OPTS) $(MAKE) -C $(@D)
endef
define HOST_MXSLDR_INSTALL_CMDS
$(INSTALL) -m 0755 -D $(@D)/mxsldr $(HOST_DIR)/bin/mxsldr
endef
$(eval $(host-generic-package))