All of lore.kernel.org
 help / color / mirror / Atom feed
From: Peter Seiderer via buildroot <buildroot@buildroot.org>
To: Petr Vorel <petr.vorel@gmail.com>
Cc: buildroot@busybox.net, "Yann E. MORIN" <yann.morin.1998@free.fr>,
	Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Subject: Re: [Buildroot] [PATCH v1 6/8] support/kconfig: bump to linux-v6.9-rc5 version
Date: Wed, 8 May 2024 23:54:19 +0200	[thread overview]
Message-ID: <20240508235419.642a8e8d@gmx.net> (raw)
In-Reply-To: <20240508214144.GA223271@pevik>

Hello Petr,

On Wed, 8 May 2024 23:41:44 +0200, Petr Vorel <petr.vorel@gmail.com> wrote:

> Hi Peter, all,
> 
> > - update RAEDME.buildroot (add copy step for kconfig.new, update
> >   copy steps for *_shipped files
> > - rebased 01-kconfig-kernel-to-buildroot.patch
> > - rebased 06-br-build-system-integration.patch
> > - updated 10-br-build-system.patch
> > - removed 11-use-mktemp-for-lxdialog.patch
> >   (no longer applicable)
> > - rebased 12-fix-glade-file-path.patch
> > - rebased 14-support-out-of-tree-config.patch
> > - rebased 16-fix-space-to-de-select-options.patch
> > - removed 17-backport-kecho.patch (use complete Kbuild.include instead
> >   of backporting single parts)
> > - rebased 18-merge-config.sh-create-temporary-files-in-tmp.patch
> > - rebased 19-merge_config.sh-add-br2-external-support.patch
> > - removed 20-merge_config.sh-Allow-to-define-config-prefix.patch
> >   (already upstream included)
> > - removed 21-Avoid-false-positive-matches-from-comment-lines.patch
> >   (already upstream included)
> > - removed 22-kconfig-lxdialog-fix-check-with-GCC14.patch
> >   (no longer applicable)
> > - new 23-Revert-kconfig-allow-only-config-comment-and-if-insi.patch
> >   (revert to re-enable source statement inside of choice, as
> >   suggested by Yann E. MORIN, see [1])  
> 
> Even with applied patch 7th and 8th (and the others applied previously simple
> 'make defconfig' fails:
> 
> buildroot/output/build/buildroot-config/conf: Kconfig file missing
> Usage: buildroot/output/build/buildroot-config/conf [options] <kconfig-file>
> 
> Generic options:
>   -h, --help              Print this message and exit.
>   -s, --silent            Do not print log.
> 
> Mode options:
>   --listnewconfig         List new options
>   --helpnewconfig         List new options and help text
>   --oldaskconfig          Start a new configuration using a line-oriented program
>   --oldconfig             Update a configuration using a provided .config as base
>   --syncconfig            Similar to oldconfig but generates configuration in
>                           include/{generated/,config/}
>   --olddefconfig          Same as oldconfig but sets new symbols to their default value
>   --defconfig <file>      New config with default defined in <file>
>   --savedefconfig <file>  Save the minimal current configuration to <file>
>   --allnoconfig           New config where all options are answered with no
>   --allyesconfig          New config where all options are answered with yes
>   --allmodconfig          New config where all options are answered with mod
>   --alldefconfig          New config with all symbols set to default
>   --randconfig            New config with random answer to all options
>   --yes2modconfig         Change answers from yes to mod if possible
>   --mod2yesconfig         Change answers from mod to yes if possible
>   --mod2noconfig          Change answers from mod to no if possible
>   (If none of the above is given, --oldaskconfig is the default)
> make[1]: *** [Makefile:1018: defconfig] Error 1
> make: *** [Makefile:82: _all] Error 2

Known problem ;-), see cover letter

> Works for me despite 'make defconfig'...

The change is in kconfig/conf.c itself, from the old version:

	{"defconfig",       optional_argument, NULL, defconfig},

From the new version:

	{"defconfig",     required_argument, &input_mode_opt, defconfig},

Regards,
Peter

> 
> Kind regards,
> Petr

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

  reply	other threads:[~2024-05-08 21:54 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-06 14:45 [Buildroot] [PATCH v1 0/8] support/kconfig: bump to linux-v6.9-rc5 version Peter Seiderer via buildroot
2024-05-06 14:45 ` [Buildroot] [PATCH v1 1/8] boot/barebox/Config.in: source argument needs quotation marks Peter Seiderer via buildroot
2024-05-26 20:45   ` Peter Korsgaard
2024-05-06 14:45 ` [Buildroot] [PATCH v1 2/8] package/cmocka/Config.in: bool " Peter Seiderer via buildroot
2024-05-26 20:46   ` Peter Korsgaard
2024-05-06 14:45 ` [Buildroot] [PATCH v1 3/8] package/dovecot/Config.in: source " Peter Seiderer via buildroot
2024-05-26 20:46   ` Peter Korsgaard
2024-05-06 14:45 ` [Buildroot] [PATCH v1 4/8] package/python-pydal/Config.in: bool " Peter Seiderer via buildroot
2024-05-26 20:45   ` Peter Korsgaard
2024-05-06 14:45 ` [Buildroot] [PATCH v1 5/8] package/x11r7/Config.in: source " Peter Seiderer via buildroot
2024-05-26 20:46   ` Peter Korsgaard
2024-05-06 14:45 ` [Buildroot] [PATCH v1 6/8] support/kconfig: bump to linux-v6.9-rc5 version Peter Seiderer via buildroot
2024-05-08 21:41   ` Petr Vorel
2024-05-08 21:54     ` Peter Seiderer via buildroot [this message]
2024-05-09 10:51       ` Yann E. MORIN
2024-05-06 14:45 ` [Buildroot] [PATCH v1 7/8] support/kconfig: reference environment variables directly (remove 'option env=') Peter Seiderer via buildroot
2024-05-06 19:06   ` Thomas Petazzoni via buildroot
2024-05-08 14:53     ` Peter Seiderer via buildroot
2024-05-08 19:18       ` Yann E. MORIN
2024-05-06 14:45 ` [Buildroot] [PATCH v1 8/8] package/openssl: move libopenssl/libressl source statemetns outside of the choice Peter Seiderer via buildroot
2024-05-06 20:11   ` Yann E. MORIN
2024-05-08 15:07     ` Peter Seiderer via buildroot
2024-05-08 18:57       ` Yann E. MORIN
2024-05-06 19:04 ` [Buildroot] [PATCH v1 0/8] support/kconfig: bump to linux-v6.9-rc5 version Thomas Petazzoni via buildroot
2024-05-06 20:19   ` Yann E. MORIN
2024-05-06 20:21     ` Thomas Petazzoni via buildroot
2024-05-08 15:21     ` Peter Seiderer via buildroot
2024-05-08 19:08       ` Yann E. MORIN
2024-05-08 15:16   ` Peter Seiderer via buildroot
2025-05-18 14:55 ` Thomas Petazzoni via buildroot
2025-05-21  7:40   ` Peter Seiderer 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=20240508235419.642a8e8d@gmx.net \
    --to=buildroot@buildroot.org \
    --cc=buildroot@busybox.net \
    --cc=petr.vorel@gmail.com \
    --cc=ps.report@gmx.net \
    --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 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.