mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2026-01-28 01:47:19 +01:00
-------------------------------------------------------------------------------
* 7e013f0 Do not read entire file into buffer when extracting
-------------------------------------------------------------------------------
commit 7e013f0afa68378d38a6bdc9b0c5a342bd3dd0a5
Author: Erik Karlsson <erik.karlsson@genexis.eu>
Date: 2021-11-30 00:09:44 +0100
Do not read entire file into buffer when extracting
Only read FDT into buffer, and then in case of external image, use lseek
followed by sendfile if supported or otherwise read/write.
Remove unnecessary strdup of option arguments that would leak memory in case
options are repeated.
Fix confusing error message with --attribute when --image is used to specify
a non-existing image.
Base directory -> /
fdtextract.c | 169 +++++++++++++++++++++++++++++++++++++----------------------
1 file changed, 106 insertions(+), 63 deletions(-)
-------------------------------------------------------------------------------
51 lines
1.1 KiB
Makefile
51 lines
1.1 KiB
Makefile
#
|
|
# Copyright (C) 2021 IOPSYS Software Solutions AB
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=fdtextract
|
|
PKG_RELEASE:=1
|
|
PKG_VERSION:=1.0
|
|
|
|
PKG_SOURCE_URL:=https://dev.iopsys.eu/iopsys/fdtextract.git
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_VERSION:=7e013f0afa68378d38a6bdc9b0c5a342bd3dd0a5
|
|
PKG_MIRROR_HASH:=skip
|
|
|
|
PKG_LICENSE:=GPLv2
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
RSTRIP:=true
|
|
export BUILD_DIR
|
|
|
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/$(PKG_NAME)
|
|
CATEGORY:=Utilities
|
|
TITLE:=fdtextract
|
|
DEPENDS:= +libfdt
|
|
endef
|
|
|
|
define Package/$(PKG_NAME)/description
|
|
Command to extract sub images from FIT images.
|
|
endef
|
|
|
|
MAKE_FLAGS += \
|
|
CFLAGS+="-Wall"
|
|
|
|
define Package/$(PKG_NAME)/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/fdtextract $(1)/usr/sbin/
|
|
$(STRIP) $(1)/usr/sbin/fdtextract
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,$(PKG_NAME)))
|