Authentication-Results: mail-b.sr.ht; dkim=pass header.d=craftyguy.net header.i=@craftyguy.net Received: from mout-p-103.mailbox.org (mout-p-103.mailbox.org [80.241.56.161]) by mail-b.sr.ht (Postfix) with ESMTPS id A9A1311F04E for <~mil/sxmo-devel@lists.sr.ht>; Fri, 23 Apr 2021 17:45:35 +0000 (UTC) Received: from smtp2.mailbox.org (smtp2.mailbox.org [80.241.60.241]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-384) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-p-103.mailbox.org (Postfix) with ESMTPS id 4FRhXG6Kq3zQjwy; Fri, 23 Apr 2021 19:45:34 +0200 (CEST) X-Virus-Scanned: amavisd-new at heinlein-support.de DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=craftyguy.net; s=MBO0001; t=1619199932; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=wSFkSzrOiAdQOVSCHi+VCondtPoscJ0J1HNfmIhp5Zc=; b=J/FgxsRmGDzUNMmBtL+4JE5cH9HHHQg7u9YafEPL1xZP4LDb4RS1tI8t/ZFqeS0kSZ8yGZ FQWtPTmf+HPyMX1hU0tXs9nJUGwMeOkF9qPqE5y78We0QTEMninH/CnX0Y3PqiXLtvoC+K PTqlIQF1i+/Yggx0g7z3L13IECg/XNfni6lSB9/yXXCCufBG1CiyXLoex5TrejAcwEcwXL mGJ97WY71VH9HhE0SrbgT7tbWn6D5J31n6Dco1mjERBVYntLRvRJHLitZ/WHChVyvuDlKI 9q1CesKBHwosep5PdMKX7F4f/POBScd07pklePWIoeNA27B0Uig5y+o07SeXmA== Received: from smtp2.mailbox.org ([80.241.60.241]) by spamfilter02.heinlein-hosting.de (spamfilter02.heinlein-hosting.de [80.241.56.116]) (amavisd-new, port 10030) with ESMTP id 1larzYpOLGy2; Fri, 23 Apr 2021 19:45:31 +0200 (CEST) From: Clayton Craft To: ~mil/sxmo-devel@lists.sr.ht Subject: [PATCH sxmo-utils 4/4] sxmo_deviceprofile_librem5*: add initial profile for librem5 Date: Fri, 23 Apr 2021 10:45:15 -0700 Message-Id: <20210423174515.3697034-5-clayton@craftyguy.net> In-Reply-To: <20210423174515.3697034-1-clayton@craftyguy.net> References: <20210423174515.3697034-1-clayton@craftyguy.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-MBO-SPAM-Probability: X-Rspamd-Score: -4.76 / 15.00 / 15.00 X-Rspamd-Queue-Id: E511B17EF X-Rspamd-UID: 439399 Currently there are 3 revisions of the L5, and they are all sharing the same profile here since this only sets audio vars and they're all the same. In the future the symlinks can be broken if profiles need to deviate for some reason in order to set different values for vars, etc. --- scripts/deviceprofiles/sxmo_deviceprofile_librem5r2purism.sh | 1 + scripts/deviceprofiles/sxmo_deviceprofile_librem5r3purism.sh | 1 + scripts/deviceprofiles/sxmo_deviceprofile_librem5r4purism.sh | 3 +++ 3 files changed, 5 insertions(+) create mode 120000 scripts/deviceprofiles/sxmo_deviceprofile_librem5r2purism.sh create mode 120000 scripts/deviceprofiles/sxmo_deviceprofile_librem5r3purism.sh create mode 100644 scripts/deviceprofiles/sxmo_deviceprofile_librem5r4purism.sh diff --git a/scripts/deviceprofiles/sxmo_deviceprofile_librem5r2purism.sh b/scripts/deviceprofiles/sxmo_deviceprofile_librem5r2purism.sh new file mode 120000 index 0000000..0c2d509 --- /dev/null +++ b/scripts/deviceprofiles/sxmo_deviceprofile_librem5r2purism.sh @@ -0,0 +1 @@ +sxmo_deviceprofile_librem5r4purism.sh \ No newline at end of file diff --git a/scripts/deviceprofiles/sxmo_deviceprofile_librem5r3purism.sh b/scripts/deviceprofiles/sxmo_deviceprofile_librem5r3purism.sh new file mode 120000 index 0000000..0c2d509 --- /dev/null +++ b/scripts/deviceprofiles/sxmo_deviceprofile_librem5r3purism.sh @@ -0,0 +1 @@ +sxmo_deviceprofile_librem5r4purism.sh \ No newline at end of file diff --git a/scripts/deviceprofiles/sxmo_deviceprofile_librem5r4purism.sh b/scripts/deviceprofiles/sxmo_deviceprofile_librem5r4purism.sh new file mode 100644 index 0000000..a81f36a --- /dev/null +++ b/scripts/deviceprofiles/sxmo_deviceprofile_librem5r4purism.sh @@ -0,0 +1,3 @@ +export SPEAKER="Speaker" +export HEADPHONE="Headphone" +export EARPIECE="Earpiece" -- 2.31.1