[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[Git][ftp-team/dak][master] 5 commits: Allow source only uploads of linux-5.10



Title: GitLab

Ansgar pushed to branch master at Debian FTP Team / dak

Commits:

  • c04d5677
    by Bastian Blank at 2022-07-28T21:21:13+02:00
    Allow source only uploads of linux-5.10
    
  • 511f8b9f
    by Bastian Blank at 2022-07-28T21:21:30+02:00
    Sign linux-5.10
    
  • 6a1a1fe7
    by Bastian Blank at 2022-07-29T16:19:54+02:00
    Document required changes to code-signing config
    
  • 110d58ac
    by Ansgar at 2022-07-31T11:47:45+02:00
    cronscript: add quotes around arguments
    
    The `stage` function was failing after an upgrade to Debian 11:
    
        [...]/dak/config/debian/common: line 424: local: `1': not a valid identifier
    
  • 7f868063
    by Ansgar at 2022-07-31T11:49:56+02:00
    Merge remote-tracking branch 'origin/merge-requests/260'
    

3 changed files:

Changes:

  • config/debian/common.conf
    ... ... @@ -5,4 +5,5 @@ Dinstall::AllowSourceOnlyNewSources {
    5 5
       "firefox-esr";
    
    6 6
       "linux";
    
    7 7
       "linux-4.19";
    
    8
    +  "linux-5.10";
    
    8 9
     };

  • config/debian/cronscript
    ... ... @@ -182,10 +182,10 @@ function _runtasks() {
    182 182
                     ;;
    
    183 183
                 *)
    
    184 184
                     GO=(
    
    185
    -                    FUNC=${FUNC}
    
    186
    -                    TIME=${TIME}
    
    187
    -                    ARGS=${ARGS}
    
    188
    -                    ERR=${ERR}
    
    185
    +                    FUNC="${FUNC}"
    
    186
    +                    TIME="${TIME}"
    
    187
    +                    ARGS="${ARGS}"
    
    188
    +                    ERR="${ERR}"
    
    189 189
                     )
    
    190 190
                     if [[ ${BACKGROUND} == true ]]; then
    
    191 191
                         stage $GO &
    

  • config/debian/external-signatures.conf
    1
    +// New packages also needs to be added in
    
    2
    +// https://salsa.debian.org/ftp-team/code-signing/-/blob/master/etc/debian-prod.yaml
    
    1 3
     External-Signature-Requests {
    
    2 4
       Sources {
    
    3 5
         // src:fwupd: secure boot moved to src:fwupd-efi in bookworm.
    
    ... ... @@ -55,6 +57,16 @@ External-Signature-Requests {
    55 57
             "amd64"; "arm64"; "i386";
    
    56 58
           };
    
    57 59
         };
    
    60
    +    linux-5.10 {
    
    61
    +      Packages {
    
    62
    +        "linux-image-5.10-amd64-signed-template";
    
    63
    +        "linux-image-5.10-arm64-signed-template";
    
    64
    +        "linux-image-5.10-i386-signed-template";
    
    65
    +      };
    
    66
    +      Architectures {
    
    67
    +        "amd64"; "arm64"; "i386";
    
    68
    +      };
    
    69
    +    };
    
    58 70
         shim {
    
    59 71
           Packages {
    
    60 72
             "shim-helpers-amd64-signed-template";
    


  • Reply to: