diff options
-rw-r--r-- | appliance/packagelist.in | 22 | ||||
-rw-r--r-- | configure.ac | 3 |
2 files changed, 25 insertions, 0 deletions
diff --git a/appliance/packagelist.in b/appliance/packagelist.in index e852f4d4..23d1ef41 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 013a4e81..538a4b56 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 |