|
@@ -73,6 +73,29 @@ linux ($version) unstable; urgency=low
|
|
EOF
|
|
EOF
|
|
|
|
|
|
# Generate a control file
|
|
# 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
|
|
cat <<EOF > debian/control
|
|
Source: linux
|
|
Source: linux
|
|
Section: base
|
|
Section: base
|
|
@@ -82,10 +105,11 @@ Standards-Version: 3.6.1
|
|
|
|
|
|
Package: $packagename
|
|
Package: $packagename
|
|
Architecture: any
|
|
Architecture: any
|
|
-Description: Linux kernel, version $packagename
|
|
|
|
|
|
+Description: Linux kernel, version $version
|
|
This package contains the Linux kernel, modules and corresponding other
|
|
This package contains the Linux kernel, modules and corresponding other
|
|
- files version $packagename
|
|
|
|
|
|
+ files version $version
|
|
EOF
|
|
EOF
|
|
|
|
+fi
|
|
|
|
|
|
# Fix some ownership and permissions
|
|
# Fix some ownership and permissions
|
|
chown -R root:root "$tmpdir"
|
|
chown -R root:root "$tmpdir"
|