From: Francis Laniel <francis.laniel@amarulasolutions.com>
To: u-boot@lists.denx.de, Marek Vasut <marex@denx.de>
Cc: Michael Nazzareno Trimarchi <michael@amarulasolutions.com>,
Tom Rini <trini@konsulko.com>,
Aleksandar Gerasimovski
<aleksandar.gerasimovski@hitachienergy.com>,
Holger Brunck <holger.brunck@hitachienergy.com>,
Simon Glass <sjg@chromium.org>,
Masahisa Kojima <masahisa.kojima@linaro.org>,
Heinrich Schuchardt <xypron.glpk@gmx.de>,
Philippe Reynes <philippe.reynes@softathome.com>,
Ovidiu Panait <ovidiu.panait@windriver.com>,
Ashok Reddy Soma <ashok.reddy.soma@xilinx.com>
Subject: Re: [RFC PATCH v5 24/24] DO NOT MERGE: only to make CI happy
Date: Sat, 31 Dec 2022 15:49:30 +0100 [thread overview]
Message-ID: <4795443.31r3eYUQgx@pwmachine> (raw)
In-Reply-To: <2ac45941-1e7d-b2f8-a6ba-c7f9e4bbb9f3@denx.de>
Le vendredi 23 décembre 2022, 05:15:50 CET Marek Vasut a écrit :
> On 11/1/22 20:20, Francis Laniel wrote:
> > This commit set CONFIG_HUSH_PARSER_2021 as the default to trigger the CI
> > with this parser.
> >
> > Nonetheless, Some boards are not compatible with new 2021 hush parser:
> >
> > 1. rcar3_ulcb:
> > When built with CONFIG_HUSH_PARSER_2021, the u-boot.img file size
> > exceeds the 1MB file limit of 890 bytes:
> > aarch64: + rcar3_ulcb
> > +u-boot.img exceeds file size limit:
> > + limit: 0x100000 bytes
> > + actual: 0x10037a bytes
> > + excess: 0x37a bytes
> > Some complementary work is then needed to use CONFIG_HUSH_PARSER_2021
for
> > this board.
>
> Maybe this patch helps with ULCB ?
>
> https://patchwork.ozlabs.org/project/uboot/patch/20221222211315.142860-1-mar
> ek.vasut@gmail.com/
Yes! Perfect! Thank you a lot for the recommendation!
With this, I was able to compile the img and its size is smaller than 1MB:
$ make rcar3_ulcb_defconfig
...
$ make menuconfig
# To activate CONFIG_LTO
$ CROSS_COMPILE=aarch64-linux-gnu- make -j$(nproc)
...
$ du -sh u-boot.img
996K u-boot.img
I will add your patch to future version of this series and I will rebase when
your patch would have been merged.
next prev parent reply other threads:[~2022-12-31 14:49 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-01 19:20 [RFC PATCH v5 00/24] Modernize U-Boot shell Francis Laniel
2022-11-01 19:20 ` [RFC PATCH v5 01/24] test: Add framework to test hush behavior Francis Laniel
2022-11-01 19:20 ` [RFC PATCH v5 02/24] test: hush: Test hush if/else Francis Laniel
2022-11-01 19:20 ` [RFC PATCH v5 03/24] test/py: hush_if_test: Remove the test file Francis Laniel
2022-11-01 19:20 ` [RFC PATCH v5 04/24] test: hush: Test hush variable expansion Francis Laniel
2022-11-01 19:20 ` [RFC PATCH v5 05/24] test: hush: Test hush commands list Francis Laniel
2022-11-01 19:20 ` [RFC PATCH v5 06/24] test: hush: Test hush loops Francis Laniel
2022-11-01 19:20 ` [RFC PATCH v5 07/24] cli: Add Busybox upstream hush.c file Francis Laniel
2022-11-01 19:20 ` [RFC PATCH v5 08/24] cli: Port Busybox 2021 hush to U-Boot Francis Laniel
2022-11-01 19:20 ` [RFC PATCH v5 09/24] cli: Add menu for hush parser Francis Laniel
2022-11-07 12:32 ` Patrick DELAUNAY
2022-11-07 15:28 ` Simon Glass
2022-11-08 15:21 ` Tom Rini
2022-11-08 20:15 ` Simon Glass
2022-11-08 22:26 ` Francis Laniel
2022-11-01 19:20 ` [RFC PATCH v5 10/24] global_data.h: add GD_FLG_HUSH_OLD_PARSER flag Francis Laniel
2022-11-01 19:20 ` [RFC PATCH v5 11/24] cmd: Add new parser command Francis Laniel
2022-11-01 19:20 ` [RFC PATCH v5 12/24] cli: Enables using hush 2021 parser as command line parser Francis Laniel
2022-11-01 19:20 ` [RFC PATCH v5 13/24] cli: hush_2021: Enable variables expansion for hush 2021 Francis Laniel
2022-11-01 19:20 ` [RFC PATCH v5 14/24] cli: hush_2021: Add functions to be called from run_command() Francis Laniel
2022-11-01 19:20 ` [RFC PATCH v5 15/24] cli: add hush 2021 as parser for run_command*() Francis Laniel
2022-11-01 19:20 ` [RFC PATCH v5 16/24] test: hush: Fix instructions list tests for hush 2021 Francis Laniel
2022-11-01 19:20 ` [RFC PATCH v5 17/24] test: hush: Fix variable expansion " Francis Laniel
2022-11-01 19:20 ` [RFC PATCH v5 19/24] cli: hush_2021: Enable if keyword Francis Laniel
2022-11-01 19:20 ` [RFC PATCH v5 20/24] test: hush: Fix if tests for hush 2021 Francis Laniel
2022-11-01 19:20 ` [RFC PATCH v5 21/24] cli: hush_2021: Enable loops Francis Laniel
2022-11-01 19:20 ` [RFC PATCH v5 22/24] test: hush: Fix loop tests for hush 2021 Francis Laniel
2022-11-01 19:20 ` [RFC PATCH v5 23/24] cli: hush_2021: Add upstream commits up to 24th March 2022 Francis Laniel
2022-11-01 19:20 ` [RFC PATCH v5 24/24] DO NOT MERGE: only to make CI happy Francis Laniel
2022-12-23 4:15 ` Marek Vasut
2022-12-31 14:49 ` Francis Laniel [this message]
2022-11-02 8:08 ` [RFC PATCH v5 00/24] Modernize U-Boot shell Holger Brunck
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4795443.31r3eYUQgx@pwmachine \
--to=francis.laniel@amarulasolutions.com \
--cc=aleksandar.gerasimovski@hitachienergy.com \
--cc=ashok.reddy.soma@xilinx.com \
--cc=holger.brunck@hitachienergy.com \
--cc=marex@denx.de \
--cc=masahisa.kojima@linaro.org \
--cc=michael@amarulasolutions.com \
--cc=ovidiu.panait@windriver.com \
--cc=philippe.reynes@softathome.com \
--cc=sjg@chromium.org \
--cc=trini@konsulko.com \
--cc=u-boot@lists.denx.de \
--cc=xypron.glpk@gmx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.