Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Thomas Petazzoni via buildroot <buildroot@buildroot.org>
To: Ricardo Martincoski <ricardo.martincoski@gmail.com>
Cc: "Yann E. MORIN" <yann.morin.1998@free.fr>, buildroot@buildroot.org
Subject: Re: [Buildroot] [PATCH 33/33] utils/check-symbols: new script
Date: Mon, 15 Aug 2022 11:33:30 +0200	[thread overview]
Message-ID: <20220815113330.5383950c@windsurf> (raw)
In-Reply-To: <20220814233845.2247022-34-ricardo.martincoski@gmail.com>

Hello Ricardo,

On Sun, 14 Aug 2022 20:38:45 -0300
Ricardo Martincoski <ricardo.martincoski@gmail.com> wrote:

> This is just a WIP!
> - it is ugly
> - it was not designed for performance (speed, RAM usage, ...)
> - it is poorly covered by unit tests
> - it has no help/usage
> - it has no debug options
> - it uses a hand-made database
> - it has a long list of false positives, ignored in the DB class
> - it does not support yet:
>   - rootfs
>   - virtual packages
>   - barebox
>   - linux extensions
> 
> ... but it gets some initial results
> 
> Someone willing to adopt this patch?

Does this imply that you are not interested/willing to push this
further up to a point where it can be merged?

> I don't know what to do with this symbol:
> package/fwts/Config.in:config BR2_PACKAGE_FWTS_EFI_RUNTIME_MODULE
> package/fwts/fwts.mk:ifdef BR2_PACKAGE_FWTS_EFI_RUNTIME_MODULE
> maybe one of below?
> 1) make the script to accept 'ifdef' as a valid usage for a menuconfig symbol
> 2) rework the package to use 'ifeq' like the other ones.

I would say convert to ifeq. However, there is something a bit
"special" done here:

ifdef BR2_PACKAGE_FWTS_EFI_RUNTIME_MODULE
FWTS_MODULE_SUBDIRS = efi_runtime
$(eval $(kernel-module))
endif

i.e the eval kernel-module is done within the condition. Is this the
reason for using ifdef instead of ifeq? I don't really see why, but
maybe I'm missing some aspect of GNU make sorcery. Which is why is in
Cc of this e-mail :-)

Thomas
-- 
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering and training
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

  reply	other threads:[~2022-08-15  9:33 UTC|newest]

Thread overview: 71+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-14 23:38 [Buildroot] [PATCH 00/33] fix typos Ricardo Martincoski
2022-08-14 23:38 ` [Buildroot] [PATCH 01/33] package/tclap: fix typo on help Ricardo Martincoski
2022-08-15  9:52   ` Thomas Huth
2022-09-16 11:39   ` Peter Korsgaard
2022-08-14 23:38 ` [Buildroot] [PATCH 02/33] package/ti-gfx: " Ricardo Martincoski
2022-09-16 11:39   ` Peter Korsgaard
2022-08-14 23:38 ` [Buildroot] [PATCH 03/33] package/gcnano-binaries: " Ricardo Martincoski
2022-09-16 11:39   ` Peter Korsgaard
2022-08-14 23:38 ` [Buildroot] [PATCH 04/33] package/ace: fix typo on variable names Ricardo Martincoski
2022-09-16 11:39   ` Peter Korsgaard
2022-08-14 23:38 ` [Buildroot] [PATCH 05/33] package/c-capnproto: use space after depends on Ricardo Martincoski
2022-09-16 11:39   ` Peter Korsgaard
2022-08-14 23:38 ` [Buildroot] [PATCH 06/33] package/kvm-unit-tests: do not use "select...if SYMBOL=y" Ricardo Martincoski
2022-08-15  9:51   ` Thomas Huth
2022-09-16 11:39   ` Peter Korsgaard
2022-08-14 23:38 ` [Buildroot] [PATCH 07/33] Config.in.legacy: add missing select Ricardo Martincoski
2022-09-16 11:40   ` Peter Korsgaard
2022-08-14 23:38 ` [Buildroot] [PATCH 08/33] package/libvncserver: fix typo on BR2_nios2 Ricardo Martincoski
2022-09-16 11:40   ` Peter Korsgaard
2022-08-14 23:38 ` [Buildroot] [PATCH 09/33] package/libgpg-error: fix typo for BR2_aarch64_be Ricardo Martincoski
2022-09-16 11:40   ` Peter Korsgaard
2022-08-14 23:38 ` [Buildroot] [PATCH 10/33] package/freeswitch: fix typo on BR2_powerpc64le Ricardo Martincoski
2022-09-16 11:40   ` Peter Korsgaard
2022-08-14 23:38 ` [Buildroot] [PATCH 11/33] package/uclibc: drop old SPARC symbols Ricardo Martincoski
2022-09-16 11:40   ` Peter Korsgaard
2022-08-14 23:38 ` [Buildroot] [PATCH 12/33] package/tcf-agent: drop bogus BR2_powerpcle Ricardo Martincoski
2022-09-16 11:40   ` Peter Korsgaard
2022-08-14 23:38 ` [Buildroot] [PATCH 13/33] package/qemu: fix typo on STAGING_DIR Ricardo Martincoski
2022-09-16 11:40   ` Peter Korsgaard
2022-08-14 23:38 ` [Buildroot] [PATCH 14/33] package/tesseract-ocr: fix typo on BR2_PACKAGE_TESSERACT_OCR_LANG_GER Ricardo Martincoski
2022-09-16 11:41   ` Peter Korsgaard
2022-08-14 23:38 ` [Buildroot] [PATCH 15/33] package/wolftpm: fix typo on BR2_PACKAGE_WOLFTPM_NUVOTON Ricardo Martincoski
2022-08-15 17:46   ` Dimi Tomov
2022-08-15 18:03     ` Yann E. MORIN
2022-08-15 20:10       ` Dimi Tomov
2022-08-14 23:38 ` [Buildroot] [PATCH 16/33] package/kodi: fix typo on BR2_PACKAGE_KODI_PLATFORM_SUPPORTS_X11 Ricardo Martincoski
2022-09-16 11:41   ` Peter Korsgaard
2022-08-14 23:38 ` [Buildroot] [PATCH 17/33] package/sconeserver: fix typo on BR2_STATIC_LIBS Ricardo Martincoski
2022-09-16 11:41   ` Peter Korsgaard
2022-08-14 23:38 ` [Buildroot] [PATCH 18/33] package/libglvnd: fix typo on BR2_PACKAGE_XORGPROTO Ricardo Martincoski
2022-09-16 11:41   ` Peter Korsgaard
2022-08-14 23:38 ` [Buildroot] [PATCH 19/33] boot/optee-os: fix typo on BR2_TARGET_OPTEE_OS_LATEST Ricardo Martincoski
2022-08-14 23:38 ` [Buildroot] [PATCH 20/33] package/busybox: fix typo on BR2_PACKAGE_NETCAT_OPENBSD Ricardo Martincoski
2022-09-16 11:42   ` Peter Korsgaard
2022-08-14 23:38 ` [Buildroot] [PATCH 21/33] package/jquery-ui-themes: fix typo on BR2_PACKAGE_JQUERY_UI_THEMES_VADER Ricardo Martincoski
2022-09-16 11:42   ` Peter Korsgaard
2022-08-14 23:38 ` [Buildroot] [PATCH 22/33] package/gstreamer1/gst1-plugins-bad: fix typo on BR2_PACKAGE_OPENAL_ARCH_SUPPORTS Ricardo Martincoski
2022-09-16 11:42   ` Peter Korsgaard
2022-08-14 23:38 ` [Buildroot] [PATCH 23/33] package/pcsc-lite: fix typo on BR2_PACKAGE_PCSC_LITE_* Ricardo Martincoski
2022-09-16 11:42   ` Peter Korsgaard
2022-08-14 23:38 ` [Buildroot] [PATCH 24/33] package/zeek: drop bogus PYTHON3_HASHLIB Ricardo Martincoski
2022-08-14 23:38 ` [Buildroot] [PATCH 25/33] package/cups: drop bogus libpaper dependency Ricardo Martincoski
2022-09-16 11:42   ` Peter Korsgaard
2022-08-14 23:38 ` [Buildroot] [PATCH 26/33] package/ranger: drop bogus BR2_PACKAGE_PYTHON_PYC_ONLY Ricardo Martincoski
2022-09-16 11:43   ` Peter Korsgaard
2022-08-14 23:38 ` [Buildroot] [PATCH 27/33] package/openocd: drop bogus BR2_PACKAGE_OPENOCD_ZY1000* Ricardo Martincoski
2022-09-16 11:43   ` Peter Korsgaard
2022-08-14 23:38 ` [Buildroot] [PATCH 28/33] package/directfb: drop bogus BR2_PACKAGE_DIRECTFB_CYBER5K Ricardo Martincoski
2022-09-16 11:43   ` Peter Korsgaard
2022-08-14 23:38 ` [Buildroot] [PATCH 29/33] package/x11r7/xserver_xorg-server: drop bogus BR2_PACKAGE_XSERVER_XORG_SERVER_BUILTIN_FONTS Ricardo Martincoski
2022-09-16 11:43   ` Peter Korsgaard
2022-08-14 23:38 ` [Buildroot] [PATCH 30/33] package/gstreamer1/gst1-plugins-good: drop bogus BR2_PACKAGE_GST1_PLUGINS_GOOD_ZLIB Ricardo Martincoski
2022-09-16 11:44   ` Peter Korsgaard
2022-08-14 23:38 ` [Buildroot] [PATCH 31/33] package/libsepol: drop bogus BR2_TOOLCHAIN_HEADERS_AT_LEAST_2_6 Ricardo Martincoski
2022-09-16 11:44   ` Peter Korsgaard
2022-08-14 23:38 ` [Buildroot] [PATCH 32/33] package/python-pygame: drop bogus BR2_PACKAGE_PYTHON_PYGAME_MIXER_MUSIC Ricardo Martincoski
2022-09-16 11:44   ` Peter Korsgaard
2022-08-14 23:38 ` [Buildroot] [PATCH 33/33] utils/check-symbols: new script Ricardo Martincoski
2022-08-15  9:33   ` Thomas Petazzoni via buildroot [this message]
2022-08-15 14:49     ` Arnout Vandecappelle
2022-08-15  9:29 ` [Buildroot] [PATCH 00/33] fix typos Thomas Petazzoni via buildroot

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=20220815113330.5383950c@windsurf \
    --to=buildroot@buildroot.org \
    --cc=ricardo.martincoski@gmail.com \
    --cc=thomas.petazzoni@bootlin.com \
    --cc=yann.morin.1998@free.fr \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox