It's not being actively used, so drop it.
Signed-off-by: Lucas De Marchi <lucas.de.marchi@gmail.com>
tar-sync: kmod-$(VERSION).tar.xz kmod-$(VERSION).tar.sign
kup put kmod-$(VERSION).tar.xz kmod-$(VERSION).tar.sign /pub/linux/utils/kernel/kmod/
-
-# ------------------------------------------------------------------------------
-# mkosi
-# ------------------------------------------------------------------------------
-
-DISTRO ?= "arch"
-
-mkosi:
- -$(MKDIR_P) $(top_srcdir)/testsuite/mkosi/mkosi.cache
- $(MKOSI) -C $(top_srcdir)/testsuite/mkosi --build-sources ../../ --default mkosi.${DISTRO} -fi
AC_PROG_LN_S
PKG_PROG_PKG_CONFIG
AC_PATH_PROG([XSLTPROC], [xsltproc])
-AC_PATH_PROG([MKOSI], [mkosi])
AC_PROG_CC_C99
+++ /dev/null
-/*-image.raw*
-/.mkosi-*
-/mkosi.cache
+++ /dev/null
-[Distribution]
-Distribution=arch
-Release=(rolling)
-
-[Output]
-Output = arch-image.raw
-
-[Packages]
-Packages = valgrind
-BuildPackages =
- automake
- gcc
- git
- make
- pkg-config
- python2
- python2-future
- autoconf
- gtk-doc
- docbook-xml
- docbook-xsl
- linux-headers
- openssl
-
-[Partitions]
-RootSize = 3G
+++ /dev/null
-#!/bin/bash -ex
-
-function find_kdir() {
- local kdirs=(/usr/lib/modules/*/build/Makefile /usr/src/kernels/*/Makefile)
- local kdir=""
-
- for f in "${kdirs[@]}"; do
- if [ -f "$f" ]; then
- kdir=$f
- break
- fi
- done
-
- if [ -z "$kdir" ]; then
- printf '==> Unable to find kernel headers to build modules for tests\n' >&2
- exit 1
- fi
-
- kdir=${kdir%/Makefile}
-
- echo $kdir
-}
-
-if [ -f configure ]; then
- make distclean
-fi
-
-rm -rf build
-mkdir build
-cd build
-
-kdir=$(find_kdir)
-IFS=/ read _ _ _ kver _ <<<"$kdir"
-
-../autogen.sh c
-make -j
-make check KDIR="$kdir" KVER="$kver"
-make install
+++ /dev/null
-[Distribution]
-Distribution=clear
-Release=latest
-
-[Output]
-Output = clear-image.raw
-
-[Packages]
-Packages=
- os-core-update
-BuildPackages=
- os-core-dev
- linux-dev
-
-[Partitions]
-RootSize = 5G
-
-[Host]
-# This is where swupd-extract is usually installed.
-ExtraSearchPaths=$SUDO_HOME/go/bin
\ No newline at end of file
+++ /dev/null
-[Distribution]
-Distribution=fedora
-Release=29
-
-[Output]
-Output = fedora-image.raw
-
-[Packages]
-Packages = valgrind
-BuildPackages =
- autoconf
- automake
- gcc
- git
- gtk-doc
- kernel-devel
- libtool
- libxslt
- make
- pkgconf-pkg-config
- xml-common
- libzstd-devel
- xz-devel
- zlib-devel
- openssl-devel
-
-[Partitions]
-RootSize = 2G