Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

meson64 kernels HDMI patch is obsolete #7579

Merged
merged 4 commits into from
Dec 15, 2024
Merged

Conversation

way5
Copy link
Contributor

@way5 way5 commented Dec 15, 2024

Description

Issue:

The following patches could not be applied because these changes already exists in linux sources.

  • ./patch/kernel/archive/meson64-6.1/general-hdmi-codec-reorder-channel-allocation-list.patch
  • ./patch/kernel/archive/meson64-6.6/general-hdmi-codec-reorder-channel-allocation-list.patch
  • ./patch/kernel/archive/meson64-6.12/general-hdmi-codec-reorder-channel-allocation-list.patch
Summary of failed patches
                                       Summary of failed patches                                        
[🐳|🔨]   ╭──────────────────────┬────────────────────────────────────────┬───────────────────────────────────────╮
[🐳|🔨]   │ Patch                │ Patching output                        │ Rejects                               │
[🐳|🔨]   ├──────────────────────┼────────────────────────────────────────┼───────────────────────────────────────┤
[🐳|🔨]   │ general-hdmi-codec-r │ patching file                          │ --- sound/soc/codecs/hdmi-codec.c     │
[🐳|🔨]   │ eorder-channel-alloc │ "sound/soc/codecs/hdmi-codec.c"        │ +++ sound/soc/codecs/hdmi-codec.c     │
[🐳|🔨]   │ ation-list           │ Reversed (or previously applied) patch │ @@ -184,84 +184,97 @@ static const    │
[🐳|🔨]   │                      │ detected!  Skipping patch.             │ struct snd_pcm_chmap_elem             │
[🐳|🔨]   │                      │ 2 out of 2 hunks ignored -- saving     │ hdmi_codec_8ch_chmaps[] = {           │
[🐳|🔨]   │                      │ rejects to file "/tmp/tmpzop38tcp"     │  /*                                   │
[🐳|🔨]   │                      │                                        │   * hdmi_codec_channel_alloc: speaker │
[🐳|🔨]   │                      │                                        │ configuration available for CEA       │
[🐳|🔨]   │                      │                                        │   *                                   │
[🐳|🔨]   │                      │                                        │ - * This is an ordered list that must │
[🐳|🔨]   │                      │                                        │ match with hdmi_codec_8ch_chmaps      │
[🐳|🔨]   │                      │                                        │ struct                                │
[🐳|🔨]   │                      │                                        │ + * This is an ordered list where     │
[🐳|🔨]   │                      │                                        │ ca_id must exist in                   │
[🐳|🔨]   │                      │                                        │ hdmi_codec_8ch_chmaps                 │
[🐳|🔨]   │                      │                                        │   * The preceding ones have better    │
[🐳|🔨]   │                      │                                        │ chances to be selected by             │
[🐳|🔨]   │                      │                                        │   *                                   │
[🐳|🔨]   │                      │                                        │ hdmi_codec_get_ch_alloc_table_idx().  │
[🐳|🔨]   │                      │                                        │   */                                  │
[🐳|🔨]   │                      │                                        │  static const struct                  │
[🐳|🔨]   │                      │                                        │ hdmi_codec_cea_spk_alloc              │
[🐳|🔨]   │                      │                                        │ hdmi_codec_channel_alloc[] = {        │
[🐳|🔨]   │                      │                                        │     { .ca_id = 0x00, .n_ch = 2,       │
[🐳|🔨]   │                      │                                        │ -     .mask = FL | FR},               │
[🐳|🔨]   │                      │                                        │ -   /* 2.1 */                         │
[🐳|🔨]   │                      │                                        │ -   { .ca_id = 0x01, .n_ch = 4,       │
[🐳|🔨]   │                      │                                        │ -     .mask = FL | FR | LFE},         │
[🐳|🔨]   │                      │                                        │ -   /* Dolby Surround */              │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR },              │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x03, .n_ch = 4,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | LFE | FC },   │
[🐳|🔨]   │                      │                                        │     { .ca_id = 0x02, .n_ch = 4,       │
[🐳|🔨]   │                      │                                        │       .mask = FL | FR | FC },         │
[🐳|🔨]   │                      │                                        │ -   /* surround51 */                  │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x01, .n_ch = 4,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | LFE },        │
[🐳|🔨]   │                      │                                        │     { .ca_id = 0x0b, .n_ch = 6,       │
[🐳|🔨]   │                      │                                        │ -     .mask = FL | FR | LFE | FC | RL │
[🐳|🔨]   │                      │                                        │ | RR},                                │
[🐳|🔨]   │                      │                                        │ -   /* surround40 */                  │
[🐳|🔨]   │                      │                                        │ -   { .ca_id = 0x08, .n_ch = 6,       │
[🐳|🔨]   │                      │                                        │ -     .mask = FL | FR | RL | RR },    │
[🐳|🔨]   │                      │                                        │ -   /* surround41 */                  │
[🐳|🔨]   │                      │                                        │ -   { .ca_id = 0x09, .n_ch = 6,       │
[🐳|🔨]   │                      │                                        │ -     .mask = FL | FR | LFE | RL | RR │
[🐳|🔨]   │                      │                                        │ },                                    │
[🐳|🔨]   │                      │                                        │ -   /* surround50 */                  │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | LFE | FC | RL │
[🐳|🔨]   │                      │                                        │ | RR },                               │
[🐳|🔨]   │                      │                                        │     { .ca_id = 0x0a, .n_ch = 6,       │
[🐳|🔨]   │                      │                                        │       .mask = FL | FR | FC | RL | RR  │
[🐳|🔨]   │                      │                                        │ },                                    │
[🐳|🔨]   │                      │                                        │ -   /* 6.1 */                         │
[🐳|🔨]   │                      │                                        │ -   { .ca_id = 0x0f, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ -     .mask = FL | FR | LFE | FC | RL │
[🐳|🔨]   │                      │                                        │ | RR | RC },                          │
[🐳|🔨]   │                      │                                        │ -   /* surround71 */                  │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x09, .n_ch = 6,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | LFE | RL | RR │
[🐳|🔨]   │                      │                                        │ },                                    │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x08, .n_ch = 6,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | RL | RR },    │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x07, .n_ch = 6,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | LFE | FC | RC │
[🐳|🔨]   │                      │                                        │ },                                    │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x06, .n_ch = 6,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | FC | RC },    │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x05, .n_ch = 6,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | LFE | RC },   │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x04, .n_ch = 6,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | RC },         │
[🐳|🔨]   │                      │                                        │     { .ca_id = 0x13, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │       .mask = FL | FR | LFE | FC | RL │
[🐳|🔨]   │                      │                                        │ | RR | RLC | RRC },                   │
[🐳|🔨]   │                      │                                        │ -   /* others */                      │
[🐳|🔨]   │                      │                                        │ -   { .ca_id = 0x03, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ -     .mask = FL | FR | LFE | FC },   │
[🐳|🔨]   │                      │                                        │ -   { .ca_id = 0x04, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ -     .mask = FL | FR | RC},          │
[🐳|🔨]   │                      │                                        │ -   { .ca_id = 0x05, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ -     .mask = FL | FR | LFE | RC },   │
[🐳|🔨]   │                      │                                        │ -   { .ca_id = 0x06, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ -     .mask = FL | FR | FC | RC },    │
[🐳|🔨]   │                      │                                        │ -   { .ca_id = 0x07, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ -     .mask = FL | FR | LFE | FC | RC │
[🐳|🔨]   │                      │                                        │ },                                    │
[🐳|🔨]   │                      │                                        │ -   { .ca_id = 0x0c, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ -     .mask = FL | FR | RC | RL | RR  │
[🐳|🔨]   │                      │                                        │ },                                    │
[🐳|🔨]   │                      │                                        │ -   { .ca_id = 0x0d, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ -     .mask = FL | FR | LFE | RL | RR │
[🐳|🔨]   │                      │                                        │ | RC },                               │
[🐳|🔨]   │                      │                                        │ -   { .ca_id = 0x0e, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ -     .mask = FL | FR | FC | RL | RR  │
[🐳|🔨]   │                      │                                        │ | RC },                               │
[🐳|🔨]   │                      │                                        │ -   { .ca_id = 0x10, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ -     .mask = FL | FR | RL | RR | RLC │
[🐳|🔨]   │                      │                                        │ | RRC },                              │
[🐳|🔨]   │                      │                                        │ -   { .ca_id = 0x11, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ -     .mask = FL | FR | LFE | RL | RR │
[🐳|🔨]   │                      │                                        │ | RLC | RRC },                        │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x1f, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | LFE | FC | RL │
[🐳|🔨]   │                      │                                        │ | RR | FLC | FRC },                   │
[🐳|🔨]   │                      │                                        │     { .ca_id = 0x12, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │       .mask = FL | FR | FC | RL | RR  │
[🐳|🔨]   │                      │                                        │ | RLC | RRC },                        │
[🐳|🔨]   │                      │                                        │ -   { .ca_id = 0x14, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ -     .mask = FL | FR | FLC | FRC },  │
[🐳|🔨]   │                      │                                        │ -   { .ca_id = 0x15, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ -     .mask = FL | FR | LFE | FLC |   │
[🐳|🔨]   │                      │                                        │ FRC },                                │
[🐳|🔨]   │                      │                                        │ -   { .ca_id = 0x16, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ -     .mask = FL | FR | FC | FLC |    │
[🐳|🔨]   │                      │                                        │ FRC },                                │
[🐳|🔨]   │                      │                                        │ -   { .ca_id = 0x17, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ -     .mask = FL | FR | LFE | FC |    │
[🐳|🔨]   │                      │                                        │ FLC | FRC },                          │
[🐳|🔨]   │                      │                                        │ -   { .ca_id = 0x18, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ -     .mask = FL | FR | RC | FLC |    │
[🐳|🔨]   │                      │                                        │ FRC },                                │
[🐳|🔨]   │                      │                                        │ -   { .ca_id = 0x19, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ -     .mask = FL | FR | LFE | RC |    │
[🐳|🔨]   │                      │                                        │ FLC | FRC },                          │
[🐳|🔨]   │                      │                                        │ -   { .ca_id = 0x1a, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ -     .mask = FL | FR | RC | FC | FLC │
[🐳|🔨]   │                      │                                        │ | FRC },                              │
[🐳|🔨]   │                      │                                        │ -   { .ca_id = 0x1b, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ -     .mask = FL | FR | LFE | RC | FC │
[🐳|🔨]   │                      │                                        │ | FLC | FRC },                        │
[🐳|🔨]   │                      │                                        │ -   { .ca_id = 0x1c, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ -     .mask = FL | FR | RL | RR | FLC │
[🐳|🔨]   │                      │                                        │ | FRC },                              │
[🐳|🔨]   │                      │                                        │ -   { .ca_id = 0x1d, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ -     .mask = FL | FR | LFE | RL | RR │
[🐳|🔨]   │                      │                                        │ | FLC | FRC },                        │
[🐳|🔨]   │                      │                                        │     { .ca_id = 0x1e, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │       .mask = FL | FR | FC | RL | RR  │
[🐳|🔨]   │                      │                                        │ | FLC | FRC },                        │
[🐳|🔨]   │                      │                                        │ -   { .ca_id = 0x1f, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ -     .mask = FL | FR | LFE | FC | RL │
[🐳|🔨]   │                      │                                        │ | RR | FLC | FRC },                   │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x11, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | LFE | RL | RR │
[🐳|🔨]   │                      │                                        │ | RLC | RRC },                        │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x1d, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | LFE | RL | RR │
[🐳|🔨]   │                      │                                        │ | FLC | FRC },                        │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x10, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | RL | RR | RLC │
[🐳|🔨]   │                      │                                        │ | RRC },                              │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x1c, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | RL | RR | FLC │
[🐳|🔨]   │                      │                                        │ | FRC },                              │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x0f, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | LFE | FC | RL │
[🐳|🔨]   │                      │                                        │ | RR | RC },                          │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x1b, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | LFE | RC | FC │
[🐳|🔨]   │                      │                                        │ | FLC | FRC },                        │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x0e, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | FC | RL | RR  │
[🐳|🔨]   │                      │                                        │ | RC },                               │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x1a, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | RC | FC | FLC │
[🐳|🔨]   │                      │                                        │ | FRC },                              │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x0d, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | LFE | RL | RR │
[🐳|🔨]   │                      │                                        │ | RC },                               │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x19, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | LFE | RC |    │
[🐳|🔨]   │                      │                                        │ FLC | FRC },                          │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x0c, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | RC | RL | RR  │
[🐳|🔨]   │                      │                                        │ },                                    │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x18, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | RC | FLC |    │
[🐳|🔨]   │                      │                                        │ FRC },                                │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x17, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | LFE | FC |    │
[🐳|🔨]   │                      │                                        │ FLC | FRC },                          │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x16, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | FC | FLC |    │
[🐳|🔨]   │                      │                                        │ FRC },                                │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x15, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | LFE | FLC |   │
[🐳|🔨]   │                      │                                        │ FRC },                                │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x14, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | FLC | FRC },  │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x0b, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | LFE | FC | RL │
[🐳|🔨]   │                      │                                        │ | RR },                               │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x0a, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | FC | RL | RR  │
[🐳|🔨]   │                      │                                        │ },                                    │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x09, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | LFE | RL | RR │
[🐳|🔨]   │                      │                                        │ },                                    │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x08, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | RL | RR },    │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x07, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | LFE | FC | RC │
[🐳|🔨]   │                      │                                        │ },                                    │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x06, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | FC | RC },    │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x05, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | LFE | RC },   │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x04, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | RC },         │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x03, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | LFE | FC },   │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x02, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | FC },         │
[🐳|🔨]   │                      │                                        │ +   { .ca_id = 0x01, .n_ch = 8,       │
[🐳|🔨]   │                      │                                        │ +     .mask = FL | FR | LFE },        │
[🐳|🔨]   │                      │                                        │  };                                   │
[🐳|🔨]   │                      │                                        │                                       │
[🐳|🔨]   │                      │                                        │  struct hdmi_codec_priv {             │
[🐳|🔨]   │                      │                                        │ @@ -370,7 +383,8 @@ static int        │
[🐳|🔨]   │                      │                                        │ hdmi_codec_chmap_ctl_get(struct       │
[🐳|🔨]   │                      │                                        │ snd_kcontrol *kcontrol,               │
[🐳|🔨]   │                      │                                        │     struct snd_pcm_chmap *info =      │
[🐳|🔨]   │                      │                                        │ snd_kcontrol_chip(kcontrol);          │
[🐳|🔨]   │                      │                                        │     struct hdmi_codec_priv *hcp =     │
[🐳|🔨]   │                      │                                        │ info->private_data;                   │
[🐳|🔨]   │                      │                                        │                                       │
[🐳|🔨]   │                      │                                        │ -   map =                             │
[🐳|🔨]   │                      │                                        │ info->chmap[hcp->chmap_idx].map;      │
[🐳|🔨]   │                      │                                        │ +   if (hcp->chmap_idx !=             │
[🐳|🔨]   │                      │                                        │ HDMI_CODEC_CHMAP_IDX_UNKNOWN)         │
[🐳|🔨]   │                      │                                        │ +       map =                         │
[🐳|🔨]   │                      │                                        │ info->chmap[hcp->chmap_idx].map;      │
[🐳|🔨]   │                      │                                        │                                       │
[🐳|🔨]   │                      │                                        │     for (i = 0; i <                   │
[🐳|🔨]   │                      │                                        │ info->max_channels; i++) {            │
[🐳|🔨]   │                      │                                        │         if (hcp->chmap_idx ==         │
[🐳|🔨]   │                      │                                        │ HDMI_CODEC_CHMAP_IDX_UNKNOWN)         │
[🐳|🔨]   │                      │                                        │                                       │
[🐳|🔨]   ╰──────────────────────┴────────────────────────────────────────┴───────────────────────────────────────╯
[🐳|🔨]   Traceback (most recent call last):
[🐳|🔨]     File "/armbian/lib/tools/patching.py", line 491, in <module>
[🐳|🔨]       raise exit_with_exception
[🐳|🔨]   Exception: Failed to apply 1 patches.
[🐳|💥] Error 1 occurred in main shell [ at /armbian/lib/functions/logging/runners.sh:211
    run_host_command_logged_raw() --> lib/functions/logging/runners.sh:211
        run_host_command_logged() --> lib/functions/logging/runners.sh:193
    kernel_main_patching_python() --> lib/functions/compilation/kernel-patching.sh:64
                  do_with_hooks() --> lib/functions/general/extensions.sh:567
                do_with_logging() --> lib/functions/logging/section-logging.sh:81
           kernel_main_patching() --> lib/functions/compilation/kernel-patching.sh:79
                 compile_kernel() --> lib/functions/compilation/kernel.sh:54
   artifact_kernel_build_from_sources() --> lib/functions/artifacts/artifact-kernel.sh:240
    artifact_build_from_sources() --> lib/functions/artifacts/artifacts-obtain.sh:34
       obtain_complete_artifact() --> lib/functions/artifacts/artifacts-obtain.sh:280
       build_artifact_for_image() --> lib/functions/artifacts/artifacts-obtain.sh:392
    main_default_build_packages() --> lib/functions/main/build-packages.sh:106
   full_build_packages_rootfs_and_image() --> lib/functions/main/default-build.sh:31
          do_with_default_build() --> lib/functions/main/default-build.sh:42
         cli_standard_build_run() --> lib/functions/cli/cli-build.sh:25
        armbian_cli_run_command() --> lib/functions/cli/utils-cli.sh:136
                 cli_entrypoint() --> lib/functions/cli/entrypoint.sh:176
                           main() --> compile.sh:50
 ]
[🐳|💥] Cleaning up [ please wait for cleanups to finish ]

How Has This Been Tested?

A couple of unofficial builds were made.

Checklist:

Please delete options that are not relevant.

  • My code follows the style guidelines of this project
  • I have performed a self-review of my own code
  • I have commented my code, particularly in hard-to-understand areas
  • My changes generate no new warnings
  • Any dependent changes have been merged and published in downstream modules

@way5 way5 requested a review from igorpecovnik as a code owner December 15, 2024 02:42
@github-actions github-actions bot added size/large PR with 250 lines or more Needs review Seeking for review Hardware Hardware related like kernel, U-Boot, ... Patches Patches related to kernel, U-Boot, ... labels Dec 15, 2024
@way5 way5 changed the title meson64 kernels HDMI patch obsolete meson64 kernels HDMI patch is obsolete Dec 15, 2024
@paolosabatino paolosabatino self-requested a review December 15, 2024 13:56
Copy link
Contributor

@paolosabatino paolosabatino left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

added myself as a reviewer, since got the same hiccup with rockchip too.

@paolosabatino paolosabatino requested a review from a team December 15, 2024 13:57
@igorpecovnik igorpecovnik added Ready to merge Reviewed, tested and ready for merge 02 Milestone: First quarter release and removed Needs review Seeking for review labels Dec 15, 2024
@igorpecovnik igorpecovnik merged commit 66b1e8f into armbian:main Dec 15, 2024
13 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
02 Milestone: First quarter release Hardware Hardware related like kernel, U-Boot, ... Patches Patches related to kernel, U-Boot, ... Ready to merge Reviewed, tested and ready for merge size/large PR with 250 lines or more
Development

Successfully merging this pull request may close these issues.

3 participants