From 8dafeaa477f9e3d2fde827b8de4b44d66b661b69 Mon Sep 17 00:00:00 2001 From: Thomas S Hatch Date: Thu, 9 Dec 2010 22:04:24 -0700 Subject: [PATCH] Added packages for Archlinux support --- appliance/packagelist.in | 22 ++++++++++++++++++++++ configure.ac | 3 +++ 2 files changed, 25 insertions(+) diff --git a/appliance/packagelist.in b/appliance/packagelist.in index e852f4d..23d1ef4 100644 --- a/appliance/packagelist.in +++ b/appliance/packagelist.in @@ -7,6 +7,7 @@ * REDHAT=1 For Fedora, RHEL, EPEL and workalikes. * DEBIAN=1 For Debian. * UBUNTU=1 For Ubuntu. + * ARCHLINUX=1 For Archlinux. */ /* Basically the same with a few minor tweaks. */ @@ -65,6 +66,27 @@ zfs-fuse #endif /* DEBIAN */ +#ifdef ARCHLINUX + kernel26 + vim + btrfs-progs-unstable + cryptsetup + diffutils + augeas + zfs-fuse + hfsprogs + e2fsprogs + grub + iputils + nilfs-utils + ntfsprogs + ntfs-3g + reiserfsprogs + udev + util-linux-ng + xz +#endif /* ARCHLINUX */ + bash binutils coreutils diff --git a/configure.ac b/configure.ac index 013a4e8..538a4b5 100644 --- a/configure.ac +++ b/configure.ac @@ -213,6 +213,9 @@ if test "x$enable_appliance" = "xyes"; then DISTRO=UBUNTU fi fi + if test -f /etc/arch-release; then + DISTRO=ARCHLINUX + fi AC_MSG_RESULT([$DISTRO]) AC_SUBST([DISTRO]) fi -- 1.8.3.1