Meta-pacotes do kernel (linux-generic vs linux-image-generic)

9

A hierarquia de pacotes para imagens do kernel do Ubuntu é assim:

linux-generic - > linux-image-generic - > linux-image-2.6.38-8-genérico.

Ambos, linux-generic e linux-image-generic, são meta-pacotes. Eu entendo o propósito de ter um meta-pacote do kernel (para lidar com upgrades e múltiplas versões do kernel), mas qual é o ponto no segundo nível? Parece que o genux-linux só depende do linux-image-generic, então certamente ele é redundante?

    
por SystemParadox 02.08.2012 / 12:07

1 resposta

5

Sim é era. Mas como o Ubuntu 12.10 linux-generic depende dos meta-pacotes de imagens e cabeçalhos:

linux-generic ─┐
               ├─ linux-image-generic   ─ linux-image-VERSION-generic
               │                        ┄ linux-image-OLD_VERSION-generic
               │                        ┄ linux-image-ANCIENT_VERSION-generic
               │
               └─ linux-headers-generic ─ linux-headers-VERSION-generic
                                        ┄ linux-headers-OLD_VERSION-generic
                                        ┄ linux-headers-ANCIENT_VERSION-generic

Mas não consigo explicar por que foi assim em vários ciclos de lançamento. Se você olhar para pesquisa de pacotes do Ubuntu e veja todas as versões que você verá pelo menos o pacote Hardy linux-generic depende de dois meta-pacotes (-image-generic e -restricted-modules-generic).

    
por Lasall 08.10.2012 / 02:28