From mboxrd@z Thu Jan 1 00:00:00 1970 List-Id: Return-Path: Received: from localhost (localhost [127.0.0.1]) by mail.ignore.pl (Postfix) with ESMTP id 79EC343625; Tue, 24 Feb 2026 08:56:49 +0000 (UTC) X-Virus-Scanned: Debian amavis at ignore.pl Received: from mail.ignore.pl ([127.0.0.1]) by localhost (geidontei.ignore.pl [127.0.0.1]) (amavis, port 10024) with ESMTP id 8hDOWmWXkzLw; Tue, 24 Feb 2026 08:56:47 +0000 (UTC) Authentication-Results: mail.ignore.pl; dkim=pass (2048-bit key; unprotected) header.d=intel.com header.i=@intel.com header.a=rsa-sha256 header.s=Intel header.b=bZUpQ1PJ; dkim-atps=neutral Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.9]) by mail.ignore.pl (Postfix) with ESMTPS id 5888743602; Tue, 24 Feb 2026 08:56:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1771923405; x=1803459405; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=9UkiOajUryTYRP1VDxf2fSB1qRC/pVw55cj1bQ3phpE=; b=bZUpQ1PJf4lIw8Cuja/yuZLlZq2FJxMiGnnow7RVuEpOrWv3Qy/hpNbh nVvZSh3mnOSLiX9mWgEnkch4DBZugpJaH0uRwg7oEj7YyJSiDQBeixbFI 3nYJIdyhg7bU7JiaZY3nuxKaygYVB03tvlw/R7CIMsi1Lh2Qbvr54HPst T5/EqzQxLt2SNC9xKOo0CTDKF521GH23sFX5Sb8+a8usPeuLqYTMJkXuS RTXdxKHQ/+p0bFEcRxquGG5rJDu1ViOiL8VEOZ2tubK6sxF44oYPdGKBE loBs4VP1RguiW9moMQAvjWawDlNE52BOCmx4dlqJU3kY793IsPCKkQmFi g==; X-CSE-ConnectionGUID: LMh/1NJaTqauNY7jmjNcqw== X-CSE-MsgGUID: 8InhEapdRfebYzdxrh6H7w== X-IronPort-AV: E=McAfee;i="6800,10657,11710"; a="83643600" X-IronPort-AV: E=Sophos;i="6.21,308,1763452800"; d="scan'208";a="83643600" Received: from fmviesa004.fm.intel.com ([10.60.135.144]) by fmvoesa103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 24 Feb 2026 00:56:44 -0800 X-CSE-ConnectionGUID: KMfdaAF8Seq5qAKrYOQTVw== X-CSE-MsgGUID: Ya1FRtPURayZT7Dy7SPTtw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.21,308,1763452800"; d="scan'208";a="219333854" Received: from hpe-dl385gen10.igk.intel.com ([10.91.240.117]) by fmviesa004.fm.intel.com with ESMTP; 24 Feb 2026 00:56:43 -0800 From: Jakub Slepecki To: patches@ignore.pl Cc: please@ignore.pl, Jakub Slepecki Subject: [PATCH what 3/3] scripts: add ID=ubuntu to scripts/install Date: Tue, 24 Feb 2026 09:56:34 +0100 Message-ID: <20260224085635.319107-4-jakub.slepecki@intel.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20260224085635.319107-1-jakub.slepecki@intel.com> References: <20260224085635.319107-1-jakub.slepecki@intel.com> MIME-Version: 1.0 Organization: Intel Technology Poland sp. z o.o. - ul. Slowackiego 173, 80-298 Gdansk - KRS 101882 - NIP 957-07-52-316 Content-Transfer-Encoding: 8bit Note, that packages may be "shared" between debian and ubuntu. Consider joining these two or a fall-through. Signed-off-by: Jakub Slepecki --- scripts/install | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/install b/scripts/install index 9c5d3b405232..545a82a22d37 100755 --- a/scripts/install +++ b/scripts/install @@ -34,5 +34,10 @@ debian) [ -n "$runtime" ] && runtime= echo apt install $buildtime $runtime ;; +ubuntu) + [ -n "$buildtime" ] && buildtime=lua-busted + [ -n "$runtime" ] && runtime= + echo apt install $buildtime $runtime + ;; *) echo "ID=$ID" >&2; exit 1;; esac -- 2.43.0