https://github.com/torvalds/linux
Raw File
Tip revision: f1132ba3465d56622c286beef6b511fd55c6482b authored by Hsien Chang on 22 January 2019, 04:07:24 UTC
Remove target_wait_for_sess_cmd()
Tip revision: f1132ba
snapcraft.yaml
name: pc-kernel
version: null
version-script: |
    . debian/debian.env
    dpkg-parsechangelog -l $DEBIAN/changelog -S version
summary: The Ubuntu generic Linux kernel
description: This Ubuntu generic Linux kernel
grade: stable
confinement: strict
type: kernel

parts:
  kernel:
    plugin: kernel
    source: .
    source-type: git
    kconfigflavour: generic
    kconfigs:
      - CONFIG_DEBUG_INFO=n
  firmware:
    plugin: nil
    stage-packages:
      - linux-firmware
    organize:
      lib/firmware: firmware
    prime:
      - -usr
      - -lib
    build-packages:
      - cpio
      - libssl-dev
back to top