drop installer
This commit is contained in:
parent
2e85d42e92
commit
cfb6102755
1
debian/.gitignore
vendored
1
debian/.gitignore
vendored
@ -7,7 +7,6 @@
|
|||||||
!/bin/
|
!/bin/
|
||||||
!/certs/
|
!/certs/
|
||||||
!/config/
|
!/config/
|
||||||
!/installer/
|
|
||||||
!/lib/
|
!/lib/
|
||||||
!/patches*/
|
!/patches*/
|
||||||
!/rules.d/
|
!/rules.d/
|
||||||
|
1
debian/README.source
vendored
1
debian/README.source
vendored
@ -228,7 +228,6 @@ Build profiles
|
|||||||
Several build profiles are understood and supported:
|
Several build profiles are understood and supported:
|
||||||
|
|
||||||
- nodoc: Exclude most documentation
|
- nodoc: Exclude most documentation
|
||||||
- noudeb: Exclude installer udeb packages
|
|
||||||
- pkg.linux.notools: Exclude userland tool packages (linux-kbuild-<version>,
|
- pkg.linux.notools: Exclude userland tool packages (linux-kbuild-<version>,
|
||||||
linux-perf, etc.)
|
linux-perf, etc.)
|
||||||
- pkg.linux.mintools: Build minimal set of userland tool packages
|
- pkg.linux.mintools: Build minimal set of userland tool packages
|
||||||
|
77
debian/bin/gencontrol.py
vendored
77
debian/bin/gencontrol.py
vendored
@ -33,11 +33,9 @@ locale.setlocale(locale.LC_CTYPE, "C.UTF-8")
|
|||||||
|
|
||||||
|
|
||||||
class Gencontrol(Base):
|
class Gencontrol(Base):
|
||||||
disable_installer: bool
|
|
||||||
disable_signed: bool
|
disable_signed: bool
|
||||||
|
|
||||||
env_flags = [
|
env_flags = [
|
||||||
('DEBIAN_KERNEL_DISABLE_INSTALLER', 'disable_installer', 'installer modules'),
|
|
||||||
('DEBIAN_KERNEL_DISABLE_SIGNED', 'disable_signed', 'signed code'),
|
('DEBIAN_KERNEL_DISABLE_SIGNED', 'disable_signed', 'signed code'),
|
||||||
]
|
]
|
||||||
|
|
||||||
@ -476,81 +474,6 @@ linux-signed-{vars['arch']} (@signedtemplate_sourceversion@) {dist}; urgency={ur
|
|||||||
["$(MAKE) -f debian/rules.real %s %s" %
|
["$(MAKE) -f debian/rules.real %s %s" %
|
||||||
(merged_config, makeflags)])
|
(merged_config, makeflags)])
|
||||||
|
|
||||||
if (
|
|
||||||
config.name_featureset == 'none'
|
|
||||||
and not self.disable_installer
|
|
||||||
and config.packages.installer
|
|
||||||
):
|
|
||||||
with tempfile.TemporaryDirectory(prefix='linux-gencontrol') as config_dir:
|
|
||||||
base_path = pathlib.Path('debian/installer').absolute()
|
|
||||||
config_path = pathlib.Path(config_dir)
|
|
||||||
(config_path / 'modules').symlink_to(base_path / 'modules')
|
|
||||||
(config_path / 'package-list').symlink_to(base_path / 'package-list')
|
|
||||||
|
|
||||||
with (config_path / 'kernel-versions').open('w') as versions:
|
|
||||||
versions.write(f'{arch} - {vars["flavour"]} - - -\n')
|
|
||||||
|
|
||||||
# Add udebs using kernel-wedge
|
|
||||||
kw_env = os.environ.copy()
|
|
||||||
kw_env['KW_DEFCONFIG_DIR'] = config_dir
|
|
||||||
kw_env['KW_CONFIG_DIR'] = config_dir
|
|
||||||
kw_proc = subprocess.Popen(
|
|
||||||
['kernel-wedge', 'gen-control', vars['abiname']],
|
|
||||||
stdout=subprocess.PIPE,
|
|
||||||
text=True,
|
|
||||||
env=kw_env)
|
|
||||||
assert kw_proc.stdout is not None
|
|
||||||
udeb_packages_base = list(read_deb822(BinaryPackage, kw_proc.stdout))
|
|
||||||
kw_proc.wait()
|
|
||||||
if kw_proc.returncode != 0:
|
|
||||||
raise RuntimeError('kernel-wedge exited with code %d' %
|
|
||||||
kw_proc.returncode)
|
|
||||||
|
|
||||||
udeb_packages = [
|
|
||||||
dataclasses.replace(
|
|
||||||
package_base,
|
|
||||||
# kernel-wedge currently chokes on Build-Profiles so add it now
|
|
||||||
build_profiles=PackageBuildprofile.parse(
|
|
||||||
'<!noudeb !pkg.linux.nokernel !pkg.linux.quick>',
|
|
||||||
),
|
|
||||||
meta_rules_target='installer',
|
|
||||||
)
|
|
||||||
for package_base in udeb_packages_base
|
|
||||||
]
|
|
||||||
|
|
||||||
makeflags_local = makeflags.copy()
|
|
||||||
makeflags_local['IMAGE_PACKAGE_NAME'] = udeb_packages[0].name
|
|
||||||
|
|
||||||
bundle_signed.add_packages(
|
|
||||||
udeb_packages,
|
|
||||||
(config.name_debianarch, config.name_featureset, config.name_flavour),
|
|
||||||
makeflags_local, arch=arch,
|
|
||||||
)
|
|
||||||
|
|
||||||
if build_signed:
|
|
||||||
# XXX This is a hack to exclude the udebs from
|
|
||||||
# the package list while still being able to
|
|
||||||
# convince debhelper and kernel-wedge to go
|
|
||||||
# part way to building them.
|
|
||||||
udeb_packages = [
|
|
||||||
dataclasses.replace(
|
|
||||||
package_base,
|
|
||||||
# kernel-wedge currently chokes on Build-Profiles so add it now
|
|
||||||
build_profiles=PackageBuildprofile.parse(
|
|
||||||
'<pkg.linux.udeb-unsigned-test-build !noudeb'
|
|
||||||
' !pkg.linux.nokernel !pkg.linux.quick>',
|
|
||||||
),
|
|
||||||
meta_rules_target='installer-test',
|
|
||||||
)
|
|
||||||
for package_base in udeb_packages_base
|
|
||||||
]
|
|
||||||
|
|
||||||
self.bundle.add_packages(
|
|
||||||
udeb_packages,
|
|
||||||
(config.name_debianarch, config.name_featureset, config.name_flavour),
|
|
||||||
makeflags_local, arch=arch, check_packages=False,
|
|
||||||
)
|
|
||||||
|
|
||||||
def process_changelog(self) -> None:
|
def process_changelog(self) -> None:
|
||||||
version = self.version = self.changelog[0].version
|
version = self.version = self.changelog[0].version
|
||||||
|
|
||||||
|
2
debian/config/alpha/defines.toml
vendored
2
debian/config/alpha/defines.toml
vendored
@ -3,8 +3,6 @@ name = 'alpha-generic'
|
|||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = 'Alpha'
|
hardware = 'Alpha'
|
||||||
hardware_long = 'DEC Alpha systems with extended kernel start address (Wildfire, Titan, Marvel)'
|
hardware_long = 'DEC Alpha systems with extended kernel start address (Wildfire, Titan, Marvel)'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
|
|
||||||
[[flavour]]
|
[[flavour]]
|
||||||
name = 'alpha-smp'
|
name = 'alpha-smp'
|
||||||
|
2
debian/config/amd64/defines.toml
vendored
2
debian/config/amd64/defines.toml
vendored
@ -5,8 +5,6 @@ is_default = true
|
|||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = '64-bit PCs'
|
hardware = '64-bit PCs'
|
||||||
hardware_long = 'PCs with AMD64, Intel 64 or VIA Nano processors'
|
hardware_long = 'PCs with AMD64, Intel 64 or VIA Nano processors'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
|
|
||||||
[[flavour]]
|
[[flavour]]
|
||||||
name = 'cloud-amd64'
|
name = 'cloud-amd64'
|
||||||
|
2
debian/config/arm64/defines.toml
vendored
2
debian/config/arm64/defines.toml
vendored
@ -4,8 +4,6 @@ name = 'arm64'
|
|||||||
is_default = true
|
is_default = true
|
||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = '64-bit ARMv8 machines'
|
hardware = '64-bit ARMv8 machines'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
|
|
||||||
[[flavour]]
|
[[flavour]]
|
||||||
name = 'cloud-arm64'
|
name = 'cloud-arm64'
|
||||||
|
2
debian/config/armhf/defines.toml
vendored
2
debian/config/armhf/defines.toml
vendored
@ -5,8 +5,6 @@ is_default = true
|
|||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = 'ARMv7 multiplatform compatible SoCs'
|
hardware = 'ARMv7 multiplatform compatible SoCs'
|
||||||
hardware_long = 'ARMv7 multiplatform kernel. See https://wiki.debian.org/DebianKernel/ARMMP for details of supported platforms'
|
hardware_long = 'ARMv7 multiplatform kernel. See https://wiki.debian.org/DebianKernel/ARMMP for details of supported platforms'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
|
|
||||||
[[flavour]]
|
[[flavour]]
|
||||||
name = "armmp-lpae"
|
name = "armmp-lpae"
|
||||||
|
4
debian/config/hppa/defines.toml
vendored
4
debian/config/hppa/defines.toml
vendored
@ -5,8 +5,6 @@ is_default = true
|
|||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = '32-bit PA-RISC'
|
hardware = '32-bit PA-RISC'
|
||||||
hardware_long = 'HP PA-RISC 32-bit systems with max 4 GB RAM'
|
hardware_long = 'HP PA-RISC 32-bit systems with max 4 GB RAM'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
|
|
||||||
[[flavour]]
|
[[flavour]]
|
||||||
name = 'parisc64'
|
name = 'parisc64'
|
||||||
@ -16,8 +14,6 @@ compiler_gnutype_compat = 'hppa-linux-gnu'
|
|||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = '64-bit PA-RISC'
|
hardware = '64-bit PA-RISC'
|
||||||
hardware_long = 'HP PA-RISC 64-bit systems with support for more than 4 GB RAM'
|
hardware_long = 'HP PA-RISC 64-bit systems with support for more than 4 GB RAM'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
|
|
||||||
[[featureset]]
|
[[featureset]]
|
||||||
name = 'none'
|
name = 'none'
|
||||||
|
2
debian/config/loong64/defines.toml
vendored
2
debian/config/loong64/defines.toml
vendored
@ -4,8 +4,6 @@ name = 'loong64'
|
|||||||
is_default = true
|
is_default = true
|
||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = '64-bit LoongArch platforms'
|
hardware = '64-bit LoongArch platforms'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
|
|
||||||
[[featureset]]
|
[[featureset]]
|
||||||
name = 'none'
|
name = 'none'
|
||||||
|
2
debian/config/m68k/defines.toml
vendored
2
debian/config/m68k/defines.toml
vendored
@ -4,8 +4,6 @@ name = 'm68k'
|
|||||||
is_default = true
|
is_default = true
|
||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = 'Motorola MC68020+ family'
|
hardware = 'Motorola MC68020+ family'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
|
|
||||||
[[featureset]]
|
[[featureset]]
|
||||||
name = 'none'
|
name = 'none'
|
||||||
|
6
debian/config/mips/defines.toml
vendored
6
debian/config/mips/defines.toml
vendored
@ -8,8 +8,6 @@ config = [
|
|||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = 'MIPS Malta'
|
hardware = 'MIPS Malta'
|
||||||
hardware_long = 'MIPS Malta boards'
|
hardware_long = 'MIPS Malta boards'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
|
|
||||||
[[flavour]]
|
[[flavour]]
|
||||||
name = 'mips32r2eb'
|
name = 'mips32r2eb'
|
||||||
@ -21,8 +19,6 @@ config = [
|
|||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = 'MIPS Generic (mips32r2eb)'
|
hardware = 'MIPS Generic (mips32r2eb)'
|
||||||
hardware_long = 'MIPS Generic platform (mips32r2eb)'
|
hardware_long = 'MIPS Generic platform (mips32r2eb)'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
|
|
||||||
[[flavour]]
|
[[flavour]]
|
||||||
name = 'octeon'
|
name = 'octeon'
|
||||||
@ -35,8 +31,6 @@ kernel_stem = 'vmlinux'
|
|||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = 'Octeon'
|
hardware = 'Octeon'
|
||||||
hardware_long = 'Cavium Networks Octeon'
|
hardware_long = 'Cavium Networks Octeon'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
|
|
||||||
[[featureset]]
|
[[featureset]]
|
||||||
name = 'none'
|
name = 'none'
|
||||||
|
6
debian/config/mips64/defines.toml
vendored
6
debian/config/mips64/defines.toml
vendored
@ -8,8 +8,6 @@ config = [
|
|||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = 'MIPS Malta'
|
hardware = 'MIPS Malta'
|
||||||
hardware_long = 'MIPS Malta boards'
|
hardware_long = 'MIPS Malta boards'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
|
|
||||||
[[flavour]]
|
[[flavour]]
|
||||||
name = 'mips64r2eb'
|
name = 'mips64r2eb'
|
||||||
@ -21,8 +19,6 @@ config = [
|
|||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = 'MIPS Generic (mips64r2eb)'
|
hardware = 'MIPS Generic (mips64r2eb)'
|
||||||
hardware_long = 'MIPS Generic platform (mips64r2eb)'
|
hardware_long = 'MIPS Generic platform (mips64r2eb)'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
|
|
||||||
[[flavour]]
|
[[flavour]]
|
||||||
name = 'octeon'
|
name = 'octeon'
|
||||||
@ -35,8 +31,6 @@ kernel_stem = 'vmlinux'
|
|||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = 'Octeon'
|
hardware = 'Octeon'
|
||||||
hardware_long = 'Cavium Networks Octeon'
|
hardware_long = 'Cavium Networks Octeon'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
|
|
||||||
[[featureset]]
|
[[featureset]]
|
||||||
name = 'none'
|
name = 'none'
|
||||||
|
10
debian/config/mips64el/defines.toml
vendored
10
debian/config/mips64el/defines.toml
vendored
@ -8,8 +8,6 @@ config = [
|
|||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = 'MIPS Malta'
|
hardware = 'MIPS Malta'
|
||||||
hardware_long = 'MIPS Malta boards'
|
hardware_long = 'MIPS Malta boards'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
|
|
||||||
[[flavour]]
|
[[flavour]]
|
||||||
name = 'mips64r2el'
|
name = 'mips64r2el'
|
||||||
@ -21,8 +19,6 @@ config = [
|
|||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = 'MIPS Generic (mips64r2el)'
|
hardware = 'MIPS Generic (mips64r2el)'
|
||||||
hardware_long = 'MIPS Generic platform (mips64r2el)'
|
hardware_long = 'MIPS Generic platform (mips64r2el)'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
|
|
||||||
[[flavour]]
|
[[flavour]]
|
||||||
name = 'mips64r6el'
|
name = 'mips64r6el'
|
||||||
@ -34,8 +30,6 @@ config = [
|
|||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = 'MIPS Generic (mips64r6el)'
|
hardware = 'MIPS Generic (mips64r6el)'
|
||||||
hardware_long = 'MIPS Generic platform (mips64r6el)'
|
hardware_long = 'MIPS Generic platform (mips64r6el)'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
|
|
||||||
[[flavour]]
|
[[flavour]]
|
||||||
name = 'loongson-3'
|
name = 'loongson-3'
|
||||||
@ -46,8 +40,6 @@ config = [
|
|||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = 'Loongson 3A/3B'
|
hardware = 'Loongson 3A/3B'
|
||||||
hardware_long = 'Loongson 3A or 3B based systems (e.g. from Loongson or Lemote)'
|
hardware_long = 'Loongson 3A or 3B based systems (e.g. from Loongson or Lemote)'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
[flavour.relations.image]
|
[flavour.relations.image]
|
||||||
recommends = ['pmon-update']
|
recommends = ['pmon-update']
|
||||||
|
|
||||||
@ -62,8 +54,6 @@ kernel_stem = 'vmlinux'
|
|||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = 'Octeon'
|
hardware = 'Octeon'
|
||||||
hardware_long = 'Cavium Networks Octeon'
|
hardware_long = 'Cavium Networks Octeon'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
|
|
||||||
[[featureset]]
|
[[featureset]]
|
||||||
name = 'none'
|
name = 'none'
|
||||||
|
2
debian/config/mips64r6el/defines.toml
vendored
2
debian/config/mips64r6el/defines.toml
vendored
@ -8,8 +8,6 @@ config = [
|
|||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = 'MIPS Generic (mips64r6el)'
|
hardware = 'MIPS Generic (mips64r6el)'
|
||||||
hardware_long = 'MIPS Generic platform (mips64r6el)'
|
hardware_long = 'MIPS Generic platform (mips64r6el)'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
|
|
||||||
[[featureset]]
|
[[featureset]]
|
||||||
name = 'none'
|
name = 'none'
|
||||||
|
8
debian/config/mipsel/defines.toml
vendored
8
debian/config/mipsel/defines.toml
vendored
@ -8,8 +8,6 @@ config = [
|
|||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = 'MIPS Malta'
|
hardware = 'MIPS Malta'
|
||||||
hardware_long = 'MIPS Malta boards'
|
hardware_long = 'MIPS Malta boards'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
|
|
||||||
[[flavour]]
|
[[flavour]]
|
||||||
name = 'mips32r2el'
|
name = 'mips32r2el'
|
||||||
@ -21,8 +19,6 @@ config = [
|
|||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = 'MIPS Generic (mips32r2el)'
|
hardware = 'MIPS Generic (mips32r2el)'
|
||||||
hardware_long = 'MIPS Generic platform (mips32r2el)'
|
hardware_long = 'MIPS Generic platform (mips32r2el)'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
|
|
||||||
[[flavour]]
|
[[flavour]]
|
||||||
name = 'loongson-3'
|
name = 'loongson-3'
|
||||||
@ -33,8 +29,6 @@ config = [
|
|||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = 'Loongson 3A/3B'
|
hardware = 'Loongson 3A/3B'
|
||||||
hardware_long = 'Loongson 3A or 3B based systems (e.g. from Loongson or Lemote)'
|
hardware_long = 'Loongson 3A or 3B based systems (e.g. from Loongson or Lemote)'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
[flavour.relations.image]
|
[flavour.relations.image]
|
||||||
recommends = ['pmon-update']
|
recommends = ['pmon-update']
|
||||||
|
|
||||||
@ -49,8 +43,6 @@ kernel_stem = 'vmlinux'
|
|||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = 'Octeon'
|
hardware = 'Octeon'
|
||||||
hardware_long = 'Cavium Networks Octeon'
|
hardware_long = 'Cavium Networks Octeon'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
|
|
||||||
[[featureset]]
|
[[featureset]]
|
||||||
name = 'none'
|
name = 'none'
|
||||||
|
4
debian/config/powerpc/defines.toml
vendored
4
debian/config/powerpc/defines.toml
vendored
@ -2,8 +2,6 @@
|
|||||||
name = 'powerpc'
|
name = 'powerpc'
|
||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = 'uniprocessor 32-bit PowerPC'
|
hardware = 'uniprocessor 32-bit PowerPC'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
|
|
||||||
[[flavour]]
|
[[flavour]]
|
||||||
name = 'powerpc-smp'
|
name = 'powerpc-smp'
|
||||||
@ -23,8 +21,6 @@ config = [
|
|||||||
]
|
]
|
||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = '64-bit PowerPC'
|
hardware = '64-bit PowerPC'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
|
|
||||||
[[featureset]]
|
[[featureset]]
|
||||||
name = 'none'
|
name = 'none'
|
||||||
|
2
debian/config/ppc64/defines.toml
vendored
2
debian/config/ppc64/defines.toml
vendored
@ -9,8 +9,6 @@ config = [
|
|||||||
is_default = true
|
is_default = true
|
||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = '64-bit PowerPC with 4k pages'
|
hardware = '64-bit PowerPC with 4k pages'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
|
|
||||||
[[flavour]]
|
[[flavour]]
|
||||||
name = 'powerpc64-64k'
|
name = 'powerpc64-64k'
|
||||||
|
2
debian/config/ppc64el/defines.toml
vendored
2
debian/config/ppc64el/defines.toml
vendored
@ -9,8 +9,6 @@ config = [
|
|||||||
is_default = true
|
is_default = true
|
||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = 'Little-endian 64-bit PowerPC with 4k pages'
|
hardware = 'Little-endian 64-bit PowerPC with 4k pages'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
|
|
||||||
[[flavour]]
|
[[flavour]]
|
||||||
name = 'powerpc64le-64k'
|
name = 'powerpc64le-64k'
|
||||||
|
2
debian/config/riscv64/defines.toml
vendored
2
debian/config/riscv64/defines.toml
vendored
@ -4,8 +4,6 @@ name = 'riscv64'
|
|||||||
is_default = true
|
is_default = true
|
||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = '64-bit RISC-V platforms'
|
hardware = '64-bit RISC-V platforms'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
|
|
||||||
[[featureset]]
|
[[featureset]]
|
||||||
name = 'none'
|
name = 'none'
|
||||||
|
2
debian/config/s390x/defines.toml
vendored
2
debian/config/s390x/defines.toml
vendored
@ -4,8 +4,6 @@ name = 's390x'
|
|||||||
is_default = true
|
is_default = true
|
||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = 'IBM zSeries'
|
hardware = 'IBM zSeries'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
|
|
||||||
[[featureset]]
|
[[featureset]]
|
||||||
name = 'none'
|
name = 'none'
|
||||||
|
4
debian/config/sh4/defines.toml
vendored
4
debian/config/sh4/defines.toml
vendored
@ -3,16 +3,12 @@ name = 'sh7751r'
|
|||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = 'sh7751r'
|
hardware = 'sh7751r'
|
||||||
hardware_long = 'Renesas SH7751R R2D plus board'
|
hardware_long = 'Renesas SH7751R R2D plus board'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
|
|
||||||
[[flavour]]
|
[[flavour]]
|
||||||
name = 'sh7785lcr'
|
name = 'sh7785lcr'
|
||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = 'sh7785lcr'
|
hardware = 'sh7785lcr'
|
||||||
hardware_long = 'Renesas SH7785 reference board'
|
hardware_long = 'Renesas SH7785 reference board'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
[flavour.relations.image]
|
[flavour.relations.image]
|
||||||
recommends = ['u-boot-tools']
|
recommends = ['u-boot-tools']
|
||||||
|
|
||||||
|
2
debian/config/sparc64/defines.toml
vendored
2
debian/config/sparc64/defines.toml
vendored
@ -6,8 +6,6 @@ config = [
|
|||||||
]
|
]
|
||||||
[flavour.description]
|
[flavour.description]
|
||||||
hardware = 'uniprocessor 64-bit UltraSPARC'
|
hardware = 'uniprocessor 64-bit UltraSPARC'
|
||||||
[flavour.packages]
|
|
||||||
installer = true
|
|
||||||
|
|
||||||
[[flavour]]
|
[[flavour]]
|
||||||
name = 'sparc64-smp'
|
name = 'sparc64-smp'
|
||||||
|
1
debian/installer/modules/affs-modules
vendored
1
debian/installer/modules/affs-modules
vendored
@ -1 +0,0 @@
|
|||||||
affs
|
|
@ -1 +0,0 @@
|
|||||||
#include <ata-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <btrfs-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <cdrom-core-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <crypto-dm-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <crypto-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <drm-core-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <ext4-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <f2fs-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <fat-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <fb-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <input-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <isofs-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <jfs-modules>
|
|
@ -1,3 +0,0 @@
|
|||||||
#include <kernel-image>
|
|
||||||
|
|
||||||
srm_env
|
|
@ -1 +0,0 @@
|
|||||||
#include <loop-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <md-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <multipath-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <nbd-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <nic-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <nic-pcmcia-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <nic-shared-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <nic-usb-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <nic-wireless-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <pata-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <pcmcia-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <ppp-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <sata-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <scsi-core-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <scsi-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <scsi-nic-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <serial-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <squashfs-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <usb-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <usb-serial-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <usb-storage-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <xfs-modules>
|
|
2
debian/installer/modules/amd64/ata-modules
vendored
2
debian/installer/modules/amd64/ata-modules
vendored
@ -1,2 +0,0 @@
|
|||||||
#include <ata-modules>
|
|
||||||
|
|
1
debian/installer/modules/amd64/btrfs-modules
vendored
1
debian/installer/modules/amd64/btrfs-modules
vendored
@ -1 +0,0 @@
|
|||||||
#include <btrfs-modules>
|
|
@ -1,2 +0,0 @@
|
|||||||
#include <cdrom-core-modules>
|
|
||||||
|
|
@ -1 +0,0 @@
|
|||||||
#include <crypto-dm-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <crypto-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <drm-core-modules>
|
|
1
debian/installer/modules/amd64/ext4-modules
vendored
1
debian/installer/modules/amd64/ext4-modules
vendored
@ -1 +0,0 @@
|
|||||||
#include <ext4-modules>
|
|
1
debian/installer/modules/amd64/f2fs-modules
vendored
1
debian/installer/modules/amd64/f2fs-modules
vendored
@ -1 +0,0 @@
|
|||||||
#include <f2fs-modules>
|
|
2
debian/installer/modules/amd64/fat-modules
vendored
2
debian/installer/modules/amd64/fat-modules
vendored
@ -1,2 +0,0 @@
|
|||||||
#include <fat-modules>
|
|
||||||
|
|
4
debian/installer/modules/amd64/fb-modules
vendored
4
debian/installer/modules/amd64/fb-modules
vendored
@ -1,4 +0,0 @@
|
|||||||
#include <fb-modules>
|
|
||||||
|
|
||||||
vesafb ?
|
|
||||||
vga16fb
|
|
@ -1 +0,0 @@
|
|||||||
#include <firewire-core-modules>
|
|
1
debian/installer/modules/amd64/input-modules
vendored
1
debian/installer/modules/amd64/input-modules
vendored
@ -1 +0,0 @@
|
|||||||
#include <input-modules>
|
|
1
debian/installer/modules/amd64/isofs-modules
vendored
1
debian/installer/modules/amd64/isofs-modules
vendored
@ -1 +0,0 @@
|
|||||||
#include <isofs-modules>
|
|
1
debian/installer/modules/amd64/jfs-modules
vendored
1
debian/installer/modules/amd64/jfs-modules
vendored
@ -1 +0,0 @@
|
|||||||
#include <jfs-modules>
|
|
8
debian/installer/modules/amd64/kernel-image
vendored
8
debian/installer/modules/amd64/kernel-image
vendored
@ -1,8 +0,0 @@
|
|||||||
#include <kernel-image>
|
|
||||||
|
|
||||||
# ACPI drivers
|
|
||||||
fan
|
|
||||||
thermal
|
|
||||||
|
|
||||||
# Optimised CRC32
|
|
||||||
crc32_pclmul
|
|
2
debian/installer/modules/amd64/loop-modules
vendored
2
debian/installer/modules/amd64/loop-modules
vendored
@ -1,2 +0,0 @@
|
|||||||
#include <loop-modules>
|
|
||||||
|
|
2
debian/installer/modules/amd64/md-modules
vendored
2
debian/installer/modules/amd64/md-modules
vendored
@ -1,2 +0,0 @@
|
|||||||
#include <md-modules>
|
|
||||||
|
|
@ -1 +0,0 @@
|
|||||||
#include <mmc-core-modules>
|
|
1
debian/installer/modules/amd64/mmc-modules
vendored
1
debian/installer/modules/amd64/mmc-modules
vendored
@ -1 +0,0 @@
|
|||||||
#include <mmc-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <mtd-core-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <multipath-modules>
|
|
1
debian/installer/modules/amd64/nbd-modules
vendored
1
debian/installer/modules/amd64/nbd-modules
vendored
@ -1 +0,0 @@
|
|||||||
#include <nbd-modules>
|
|
1
debian/installer/modules/amd64/nic-modules
vendored
1
debian/installer/modules/amd64/nic-modules
vendored
@ -1 +0,0 @@
|
|||||||
#include <nic-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <nic-pcmcia-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <nic-shared-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <nic-usb-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <nic-wireless-modules>
|
|
2
debian/installer/modules/amd64/pata-modules
vendored
2
debian/installer/modules/amd64/pata-modules
vendored
@ -1,2 +0,0 @@
|
|||||||
#include <pata-modules>
|
|
||||||
|
|
@ -1 +0,0 @@
|
|||||||
#include <pcmcia-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <pcmcia-storage-modules>
|
|
2
debian/installer/modules/amd64/ppp-modules
vendored
2
debian/installer/modules/amd64/ppp-modules
vendored
@ -1,2 +0,0 @@
|
|||||||
#include <ppp-modules>
|
|
||||||
|
|
@ -1 +0,0 @@
|
|||||||
#include <rfkill-modules>
|
|
1
debian/installer/modules/amd64/sata-modules
vendored
1
debian/installer/modules/amd64/sata-modules
vendored
@ -1 +0,0 @@
|
|||||||
#include <sata-modules>
|
|
@ -1,4 +0,0 @@
|
|||||||
#include <scsi-core-modules>
|
|
||||||
|
|
||||||
# Needed by hv_storvsc in hyperv-modules as well as scsi-modules
|
|
||||||
scsi_transport_fc
|
|
3
debian/installer/modules/amd64/scsi-modules
vendored
3
debian/installer/modules/amd64/scsi-modules
vendored
@ -1,3 +0,0 @@
|
|||||||
#include <scsi-modules>
|
|
||||||
# To support nvme
|
|
||||||
vmd
|
|
@ -1 +0,0 @@
|
|||||||
#include <scsi-nic-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <serial-modules>
|
|
1
debian/installer/modules/amd64/sound-modules
vendored
1
debian/installer/modules/amd64/sound-modules
vendored
@ -1 +0,0 @@
|
|||||||
#include <sound-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <speakup-modules>
|
|
@ -1 +0,0 @@
|
|||||||
#include <squashfs-modules>
|
|
1
debian/installer/modules/amd64/udf-modules
vendored
1
debian/installer/modules/amd64/udf-modules
vendored
@ -1 +0,0 @@
|
|||||||
#include <udf-modules>
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user