Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dc5962fd authored by Sam Ravnborg's avatar Sam Ravnborg
Browse files

uml: Restore proper descriptions in make deb-pkg target



From: Ryan Anderson <ryan@michonline.com>

This pulls the description from the Debian user-mode-linux package, and
puts $version back in the appropriate places for both descriptions.

Signed-off-by: default avatarRyan Anderson <ryan@michonline.com>
Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
parent 687c3dac
Loading
Loading
Loading
Loading
+26 −2
Original line number Diff line number Diff line
@@ -73,6 +73,29 @@ linux ($version) unstable; urgency=low
EOF

# Generate a control file
if [ "$ARCH" == "um" ]; then

cat <<EOF > debian/control
Source: linux
Section: base
Priority: optional
Maintainer: $name
Standards-Version: 3.6.1

Package: $packagename
Architecture: any
Description: User Mode Linux kernel, version $version
 User-mode Linux is a port of the Linux kernel to its own system call
 interface.  It provides a kind of virtual machine, which runs Linux
 as a user process under another Linux kernel.  This is useful for
 kernel development, sandboxes, jails, experimentation, and
 many other things.
 .
 This package contains the Linux kernel, modules and corresponding other
 files version $version
EOF

else
cat <<EOF > debian/control
Source: linux
Section: base
@@ -82,10 +105,11 @@ Standards-Version: 3.6.1

Package: $packagename
Architecture: any
Description: Linux kernel, version $packagename
Description: Linux kernel, version $version
 This package contains the Linux kernel, modules and corresponding other
 files version $packagename
 files version $version
EOF
fi

# Fix some ownership and permissions
chown -R root:root "$tmpdir"