lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Wed, 16 Nov 2022 08:56:25 +0100
From:   Rasmus Villemoes <rasmus.villemoes@...vas.dk>
To:     "Zhou, Jie2X" <jie2x.zhou@...el.com>,
        "linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Cc:     "Li, Philip" <philip.li@...el.com>
Subject: Re: scripts/config bug: can not enable CONFIG_FONT_MINI_4x6

On 16/11/2022 08.29, Zhou, Jie2X wrote:
> hi,
> 
> This is a kernel bug.
> ./scripts/config convert "CONFIG_FONT_MINI_4x6" to "CONFIG_FONT_MINI_4X6=y" in config.
> x->X, Lower case letters become upper case letters after process.
> After "make olddefconfig", CONFIG_FONT_MINI_4x6 is not set.
> 
> Add CONFIG_FONT_MINI_4x6=y to .config.
> After "make olddefconfig", CONFIG_FONT_MINI_4x6 is set.
> 

>From the script you're invoking:

        if [ "$MUNGE_CASE" = "yes" ] ; then
                ARG="`echo $ARG | tr a-z A-Z`"
        fi
...
MUNGE_CASE=yes
while [ "$1" != "" ] ; do
...
        --keep-case|-k)
                MUNGE_CASE=no
                continue
                ;;

So perhaps use -k when using that script to enable one of the rare
config options that contains a lower-case letter.

Rasmus

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ