diff options
author | John Thomson <git@johnthomson.fastmail.com.au> | 2020-12-09 13:03:04 +1000 |
---|---|---|
committer | Petr Štetiar <ynezz@true.cz> | 2020-12-11 13:48:24 +0100 |
commit | d82c1912838f262b6f4b9157077f390f5f06b6c4 (patch) | |
tree | f39f0cb8e2497835a711b37c7f03e0ca4478ab87 /package/base-files/Makefile | |
parent | 064d65c2f76409759ac8d72268f2558c7b55f3b3 (diff) | |
download | upstream-d82c1912838f262b6f4b9157077f390f5f06b6c4.tar.gz upstream-d82c1912838f262b6f4b9157077f390f5f06b6c4.tar.bz2 upstream-d82c1912838f262b6f4b9157077f390f5f06b6c4.zip |
package/base-files: caldata: use dd iflag fullblock
This dd flag ensures that the requested size
is retrieved from pipes or special filesystems (if available).
Without this flag, on multi-core systems,
Piped or special filesystem data can be truncated
when a size greater than PIPE_BUF is requested.
Fixes: FS#3494
Fixes: 7557e7f ("package/base-files: caldata: work around dd's
limitation")
Cc: Thibaut VARÈNE <hacks@slashdirt.org>
Signed-off-by: John Thomson <git@johnthomson.fastmail.com.au>
Diffstat (limited to 'package/base-files/Makefile')
-rw-r--r-- | package/base-files/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile index 0c612b73ca..fbcb694592 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -12,7 +12,7 @@ include $(INCLUDE_DIR)/version.mk include $(INCLUDE_DIR)/feeds.mk PKG_NAME:=base-files -PKG_RELEASE:=239 +PKG_RELEASE:=240 PKG_FLAGS:=nonshared PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/ |