From 922bb506e245551ce779b91f55f9fd3fcf94fa42 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Mon, 18 Aug 2014 18:06:51 -0400 Subject: prof_proteanos_include_pkg(): Add list of packages --- (limited to 'lib') diff --git a/lib/profiles/proteanos.sh b/lib/profiles/proteanos.sh index 12ae87b..49127ff 100644 --- a/lib/profiles/proteanos.sh +++ b/lib/profiles/proteanos.sh @@ -130,9 +130,16 @@ prof_proteanos_include_pkg() local name="${1}" local value="${2}" - if [ "x${name}" = 'xPackage' ] && [ "x${value}" = 'xbase' ]; then - return 0 - else - return 1 + if [ "x${name}" = 'xPackage' ]; then + case "${value}" in + base-files|busybox|libc-bin|libc.6|libopkg.1|opkg) + return 0 + ;; + linux-image|proteanos-branding) + return 0 + ;; + esac fi + + return 1 } -- cgit v0.9.1