Skip to content
This repository has been archived by the owner on Jan 1, 2023. It is now read-only.

2021.7-2

Compare
Choose a tag to compare
@konimex konimex released this 16 Jul 01:14
· 88 commits to master since this release

A guide on how to build the kernel is here.

If you have any problems with building/running something, do NOT open an issue to KISS Linux as this is not an officially endorsed build. Open an issue here or nag me on IRC. Installation procedures should be identical to KISS, you can see that here.

Usage:

  • Extract the archive as root from inside a directory (cd dir; tar xf ../wyverkiss-XXXX.X-rootfs.tar.xz).
  • Run ./bin/kiss-chroot to enter the chroot.

Changelog:

  • Updated all packages.

Build flags:

export CFLAGS="-march=x86-64 -mtune=generic -pipe -Os"
export CXXFLAGS="-march=x86-64 -mtune=generic -pipe -Os"
export MAKEFLAGS="-j4"

Packages:

baselayout 1 7a
busybox 1.33.1 2
byacc 20210619 1
bzip2 1.0.8 1
curl 7.77.0 1
flex 2.6.4 4
git 2.32.0 1
kiss 5.5.2 2
linux-headers 5.10.47 1
llvm 12.0.1 1
m4 6.7 2
make 20210621 2
musl 1.2.2 1
openssl 1.1.1k 1
pigz 2.6 1
xz 5.2.5 1
zlib 1.2.11 3

KISS_HOOK:

case $1 in
    post-build)
        : "${3:?DEST is unset}"

        case $2 in
            kiss)
                # Skip removal.
            ;;

            *)
                rm -rf \
                    "$3/usr/share/gettext" \
                    "$3/usr/share/polkit-1" \
                    "$3/usr/share/locale" \
                    "$3/usr/share/info" \
                    "$3/usr/share/man" \
                    "$3/usr/share/doc" \
                    "$3/usr/lib/charset.alias"
            ;;
        esac
    ;;
esac