public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
From: Gylstorff Quirin <quirin.gylstorff@siemens.com>
To: isar-users@googlegroups.com
Subject: Re: [PATCH v5 4/5] linux-custom: rewrite to no longer depend on the kernel's builddeb
Date: Thu, 12 Dec 2019 11:10:28 +0100	[thread overview]
Message-ID: <c856e9ca-ce58-dcea-e72e-c8b7a5ce3f9d@siemens.com> (raw)
In-Reply-To: <ac1b6125-22af-b78b-f17c-c2e736bde0ba@siemens.com>



On 12/12/19 10:46 AM, [ext] Gylstorff Quirin wrote:
> 
> 
> On 12/12/19 9:01 AM, Jan Kiszka wrote:
>> On 12.12.19 08:57, Gylstorff Quirin wrote:
>>>
>>>
>>> On 12/11/19 11:09 PM, Henning Schild wrote:
>>>> On Wed, 11 Dec 2019 19:36:05 +0100
>>>> Jan Kiszka <jan.kiszka@siemens.com> wrote:
>>>>
>>>>> On 11.12.19 16:43, [ext] Jan Kiszka wrote:
>>>>>> On 11.12.19 16:20, Gylstorff Quirin wrote:
>>>>>>>> +do_build() {
>>>>>>>> +
>>>>>>>> +    # Print a few things that are of particular interest
>>>>>>>> +    print_settings
>>>>>>>> +
>>>>>>>> +    # Process existing kernel configuration to make sure it is
>>>>>>>> complete
>>>>>>>> +    # (use defaults for options that were not specified)
>>>>>>>> +    ${MAKE} O=${KERNEL_BUILD_DIR} olddefconfig prepare || exit
>>>>>>>> ${?} +
>>>>>>>> +    # Check if the recipe's PV makes sense
>>>>>>>> +    KR=$(${MAKE} O=${KERNEL_BUILD_DIR} -s --no-print-directory
>>>>>>>> kernelrelease)
>>>>>>>> +    eval $(grep ^CONFIG_LOCALVERSION=
>>>>>>>> ${KERNEL_BUILD_DIR}/${KCONF} || true)
>>>>>>>> +    if [ "${PV}-${KERNEL_LOCALVERSION}" != "${KR}" ]; then
>>>>>>>> +        echo "ERROR: Recipe version
>>>>>>>> (${PV}-${KERNEL_LOCALVERSION}) does not seem to match the
>>>>>>>> kernelrelease (${KR})!" 1>&2
>>>>>>>> +        echo "ERROR: Make sure the kernel version in your
>>>>>>>> NAME/PV/PR settings and/or CONFIG_LOCALVERSION are aligned" 1>&2
>>>>>>>> +        exit 1 > +    fi
>>>>>>>
>>>>>>> we have some CI use case where we build the latest git release
>>>>>>> could we add something like this
>>>>>>>
>>>>>>> -    if [ "${PV}-${KERNEL_LOCALVERSION}" != "${KR}" ]; then
>>>>>>> -        echo "ERROR: Recipe version
>>>>>>> (${PV}-${KERNEL_LOCALVERSION}) does not seem to match the
>>>>>>> kernelrelease (${KR})!" 1>&2
>>>>>>> -        echo "ERROR: Make sure the kernel version in your
>>>>>>> NAME/PV/PR settings and/or CONFIG_LOCALVERSION are aligned" 1>&2
>>>>>>> -        exit 1
>>>>>>> +    if [ "${PV}" =~ "latest" ]; then
>>>>>>
>>>>>> I suspect you wanted to suggest != "latest".
>>>>>>> +        if [ "${PV}-${KERNEL_LOCALVERSION}" != "${KR}" ]; then
>>>>>>> +            echo "ERROR: Recipe version
>>>>>>> (${PV}-${KERNEL_LOCALVERSION}) does not seem to match the
>>>>>>> kernelrelease (${KR})!" 1>&2
>>>>>>> +            echo "ERROR: Make sure the kernel version in your
>>>>>>> NAME/PV/PR settings and/or CONFIG_LOCALVERSION are aligned" 1>&2
>>>>>>> +            exit 1
>>>>>>> +        fi
>>>>>>
>>>>>> We need some relaxation path for the check, yes. Given the other
>>>>>> versioning issue, I'm still trying to build a complete picture.
>>>>>
>>>>> Looking the Henning's commit that introduced the check, it reads to me
>>>>> like just addressing constraints of the old build approach. The new
>>>>> one has a way to set LOCALVERSION from the recipe.
>>>>
>>>> Yes, the check is just early catching a weird error that would have
>>>> popped up later. That must have been either the build or the step
>>>> copying the kernel binary to DEPLOY.
>>>>
>>>> If a new way of building can deal with it, the check can be dropped.
>>>>
>>>>> So, what we would rather need than this hard check is the following:
>>>>>
>>>>>    - optional KERNEL_LOCALVERSION
>>>>>    - pick-up of LOCALVERSION from the kernel config for the case it 
>>>>> was
>>>>>      defined via the config
>>>>>    - KERNEL_LOCALVERSION ?= "" to avoid breaking existing users
>>>>>      needlessly
>>>>>
>>>>> That approach would both enable CONFIG_LOCALVERSION usage via own
>>>>> configs as well as convenient management in recipes via
>>>>> KERNEL_LOCALVERSION. But it has a catch: We need the LOCALVERSION
>>>>> information already for the templating step while
>>>>> dpkg_configure_kernel is part of the build.
>>>>>
>>>>> So we may be left with these options:
>>>>>
>>>>>    - check if CONFIG_LOCALVERSION == KERNEL_LOCALVERSION, which is 
>>>>> true
>>>>>      when KERNEL_LOCALVERSION is used but could be violated when the
>>>>>      custom config provides a LOCALVERSION while 
>>>>> KERNEL_LOCALVERSION is
>>>>>      empty
>>>>>    - always override CONFIG_LOCALVERSION with KERNEL_LOCALVERSION, 
>>>>> as in
>>>>>      this version of the patch - may cause surprises, though >>>>  
>>>>>   - try to pick up CONFIG_LOCALVERSION early, but only from a user-
>>>>>      provided defconfig, not from fragments or templates - maybe too
>>>>>      unintuitive
>>>>>
>>>>> Not so easy. Thoughts?
>>>>
>>>> I am not sure i fully get the suggestion. I think you suggest to have a
>>>> bitbake variable control parts of the config ... that one localversion
>>>> key in it.
>>>>
>>>> The user expectation would probably be that the PV will become _the_
>>>> version. So i would go for a sanity check for that, and a warning if
>>>> not. After that we can discuss a magic that will turn something behind
>>>> the first or last "-" in PV into CONFIG_LOCALVERSION and patch that
>>>> into the config.
>>> You mean a warning or an error? The current version aborts the build, if
>>> the versions do not match.
>>>
>>> As mentioned before: If a mainline kernel is used PV == KERNEL_RELEASE
>>> is already not fulfilled. So we already have a two expectation the
>>> Debian user and the bitbake user.
>>>
>>>>
>>>> So instead of a new variable, come up with a new recipe naming
>>>> convention. And for people that really want to call the recipe
>>>> "kernel.bb" they would get the default
>>>>
>>>> PV = "1.0"
>>>> PR = ""
>>>> PLOCALV = ""
>>>>
>>>> Would have to check if "PR" is the thing after the first "-" ... But
>>>> maybe PR is what we are looking for ...
>>> PR is the revision of the recipe which comes after the first "-". Yocto
>>> uses its own variable "LINUX_VERSION_EXTENSION" which sets
>>> CONFIG_LOCALVERSION.
>>
>> Then we should do s/KERNEL_LOCALVERSION/LINUX_VERSION_EXTENSION.
>>
>> Just leaves us with the other policy questions.
>>
>> Jan
>>
> 
>  From my understanding after reading the patches the KERNEL_LOCALVERSION 
> does not affect the build or installation of the Kernel artifacts as the 
> mandatory control and changelog elements use only KERNEL_NAME_PROVIDED + 
> CHANGELOG_V (PV+PR). So the only occurrence of the LOCALVERSION is in 
> uname and the Package description.
> If this is the case then the check KERNEL_LOCALVERSION == 
> CONFIG_LOCALVERSION and a warning should be enough.
> 
> Did I miss something?
Yep I missed the (pre/post)inst/rm scripts. These are the only 
occurrence of the KERNEL_LOCALVERSION. This would require the abort of 
the build if some mismatch occurs.

Quirin


  reply	other threads:[~2019-12-12 10:10 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-10 18:22 [PATCH v5 0/5] linux-custom recipe rework Jan Kiszka
2019-12-10 18:22 ` [PATCH v5 1/5] recipes-kernel/linux: make KERNEL_DEFCONFIG support in-tree defconfigs Jan Kiszka
2019-12-10 18:22 ` [PATCH v5 2/5] linux-mainline: fix stripping of .0 from the kernel version Jan Kiszka
2019-12-10 18:22 ` [PATCH v5 3/5] linux-mainline: update from 4.19.0 to 4.19.88 Jan Kiszka
2019-12-10 18:22 ` [PATCH v5 4/5] linux-custom: rewrite to no longer depend on the kernel's builddeb Jan Kiszka
2019-12-11 14:40   ` Jan Kiszka
2019-12-11 15:20   ` Gylstorff Quirin
2019-12-11 15:43     ` Jan Kiszka
2019-12-11 18:36       ` Jan Kiszka
2019-12-11 22:09         ` Henning Schild
2019-12-12  7:57           ` Gylstorff Quirin
2019-12-12  8:01             ` Jan Kiszka
2019-12-12  9:46               ` Gylstorff Quirin
2019-12-12 10:10                 ` Gylstorff Quirin [this message]
2019-12-10 18:22 ` [PATCH v5 5/5] linux-mainline: Test config fragments Jan Kiszka
2019-12-19 15:19 ` [PATCH v5 0/5] linux-custom recipe rework cedric_hombourger

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=c856e9ca-ce58-dcea-e72e-c8b7a5ce3f9d@siemens.com \
    --to=quirin.gylstorff@siemens.com \
    --cc=isar-users@googlegroups.com \
    /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