Skip to content

Commit

Permalink
Using pocopico's mpt3sas
Browse files Browse the repository at this point in the history
  • Loading branch information
fbelavenuto committed Jul 16, 2022
1 parent 4ee4c14 commit b35496d
Show file tree
Hide file tree
Showing 15 changed files with 20 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3-alpha1
0.3-alpha2
2 changes: 1 addition & 1 deletion files/board/arpl/overlayfs/opt/arpl/include/consts.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

ARPL_VERSION="0.3-alpha1"
ARPL_VERSION="0.3-alpha2"

# Define paths
TMP_PATH="/tmp"
Expand Down
Binary file modified files/board/arpl/p3/addons/acpid/all.tgz
Binary file not shown.
Binary file modified files/board/arpl/p3/addons/dtbpatch/all.tgz
Binary file not shown.
Binary file modified files/board/arpl/p3/addons/eudev/all.tgz
Binary file not shown.
Binary file modified files/board/arpl/p3/addons/maxdisks/all.tgz
Binary file not shown.
Binary file modified files/board/arpl/p3/addons/misc/all.tgz
Binary file not shown.
Binary file modified files/board/arpl/p3/modules/apollolake-4.4.180.tgz
Binary file not shown.
Binary file modified files/board/arpl/p3/modules/broadwell-4.4.180.tgz
Binary file not shown.
Binary file modified files/board/arpl/p3/modules/broadwellnk-4.4.180.tgz
Binary file not shown.
Binary file modified files/board/arpl/p3/modules/bromolow-3.10.108.tgz
Binary file not shown.
Binary file modified files/board/arpl/p3/modules/denverton-4.4.180.tgz
Binary file not shown.
Binary file modified files/board/arpl/p3/modules/geminilake-4.4.180.tgz
Binary file not shown.
Binary file modified files/board/arpl/p3/modules/v1000-4.4.180.tgz
Binary file not shown.
18 changes: 18 additions & 0 deletions img-gen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,24 @@ for PKG in `ls /tmp/addons/*.addon`; do
tar xaf "${PKG}" -C "${DEST_PATH}/${ADDON}"
done

# Get latest modules
echo "Getting latest modules"
MODULES_DIR="${PWD}/files/board/arpl/p3/modules"
if [ -d ../arpl-addons ]; then
cd ../arpl-modules
for D in `ls -d *-*`; do
echo "${D}"
(cd ${D} && tar caf "${MODULES_DIR}/${D}.tgz" *.ko)
done
cd -
else
TAG=`curl -s https://api.github.com/repos/fbelavenuto/arpl-modules/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3)}'`
while read PLATFORM KVER; do
FILE="${PLATFORM}-${KVER}"
curl -L "https://github.com/fbelavenuto/arpl-modules/releases/download/${TAG}/${FILE}.tgz" -o "${MODULES_DIR}/${FILE}.tgz"
done < PLATFORMS
fi

# Copy files
echo "Copying files"
VERSION=`cat VERSION`
Expand Down

0 comments on commit b35496d

Please sign in to comment.