mirror of
git://soft.sys114.com/odroid-stamper
synced 2025-12-19 00:18:42 +09:00
Support ODROID-M1/M1S/M2 models using the same custom scripts. The basic structure is almost the same as before, however, minor changes are as follows: - Remove rga udev rule because same rule is already loaded on the startup - Rename S15-add-repository to S25-add-repository to resolve dependency with key-signing at S20-install-packages - Install packages and edit files differently based on the models. Signed-off-by: phillip.choi <phillip.choi@hardkernel.com> Change-Id: I15d658534bf2666cc12f1cd75431825210d09e05
10 lines
242 B
Bash
10 lines
242 B
Bash
#!/bin/sh
|
|
|
|
BOARD=@@DEFAULT_BOARD@@
|
|
|
|
if [ ! -z "${BOARD}" ]; then
|
|
BOARD=$(echo ${BOARD} | tr '[:lower:]' '[:upper:]' | sed -E 's/ODROID/ODROID-/')
|
|
fi
|
|
|
|
echo "echo \"You are using the ${BOARD} NPU image. Welcome!\"" >> "${HOME}/.bashrc"
|