diff options
| author | Christian Marangi | 2024-10-30 13:07:22 +0000 |
|---|---|---|
| committer | Christian Marangi | 2024-10-30 13:17:34 +0000 |
| commit | 73edd3a41e3fb0bbb0c255554fd5c0b99d701e24 (patch) | |
| tree | 822b045517401e286ddf28952015911f4eaac3f6 | |
| parent | def70fa85b242465ee14c69dc6f57cd42f860a5e (diff) | |
| download | openwrt-73edd3a41e3fb0bbb0c255554fd5c0b99d701e24.tar.gz | |
ramips: ignore errors from trx utility
Ignore errors from trx utility to handle case with image too big.
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
| -rw-r--r-- | target/linux/ramips/image/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ramips/image/Makefile b/target/linux/ramips/image/Makefile index fdc15aa1ef..5697176943 100644 --- a/target/linux/ramips/image/Makefile +++ b/target/linux/ramips/image/Makefile @@ -140,7 +140,7 @@ define Build/sign-dlink-ru endef define Build/trx - $(STAGING_DIR_HOST)/bin/trx $(1) \ + -$(STAGING_DIR_HOST)/bin/trx $(1) \ -o $@ \ -m $$(($(call exp_units,$(IMAGE_SIZE)))) \ -f $(IMAGE_KERNEL) \ |