mirror of https://github.com/OpenIPC/composer.git
Add new stapler (thanks Paul) and some litte fixes
parent
fb9afe09c3
commit
2a92e0d41a
|
@ -1,18 +1,9 @@
|
||||||
# COMPOSER
|
# OpenIPC Composer
|
||||||
|
_A tool to compile custom OpenIPC firmware._
|
||||||
**Creating OpenIPC firmware with custom settings**
|
|
||||||
|
|
||||||
|
|
||||||
## Quick Start - run one command for happiness ;)
|
|
||||||
|
|
||||||
|
### Usage:
|
||||||
```
|
```
|
||||||
git clone https://github.com/OpenIPC/composer.git && cd composer && ./stapler your_project_name
|
git clone https://github.com/openipc/composer.git
|
||||||
|
cd composer
|
||||||
|
./stapler
|
||||||
```
|
```
|
||||||
|
|
||||||
A list of supported projects can be found by running the command `./stapler`
|
|
||||||
|
|
||||||
|
|
||||||
## More info and examples at GitHub repo
|
|
||||||
|
|
||||||
[https://github.com/OpenIPC/composer](https://github.com/OpenIPC/composer)
|
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
config BR2_PACKAGE_I2C_GPIO_CUSTOM
|
config BR2_PACKAGE_I2C_GPIO_CUSTOM
|
||||||
bool "i2c-gpio-custom"
|
bool "i2c-gpio-custom"
|
||||||
depends on BR2_LINUX_KERNEL
|
depends on BR2_LINUX_KERNEL
|
||||||
default y
|
default n
|
||||||
help
|
help
|
||||||
Custom GPIO-based I2C driver
|
Custom GPIO-based I2C driver
|
||||||
|
|
||||||
|
|
|
@ -9,4 +9,4 @@ slhc
|
||||||
usb_wwan
|
usb_wwan
|
||||||
usbserial
|
usbserial
|
||||||
vfat
|
vfat
|
||||||
|
# i2c-gpio-custom.ko bus0=0,11,50
|
||||||
|
|
|
@ -0,0 +1,101 @@
|
||||||
|
#!/bin/bash
|
||||||
|
#
|
||||||
|
# OpenIPC | version 2022.11.15
|
||||||
|
|
||||||
|
# Autoupdate COMPOSER repo
|
||||||
|
# Remove old building folder (for full rebuild)
|
||||||
|
# Download OpenIPC repo
|
||||||
|
# Copy files from Project Overlay
|
||||||
|
# Build Firmware
|
||||||
|
# Copy Kernel and Rootfs to Archive
|
||||||
|
# Copy Kernel and Rootfs to TFTP server
|
||||||
|
|
||||||
|
|
||||||
|
RELEASE=""
|
||||||
|
PROJECT="$1"
|
||||||
|
|
||||||
|
TFTP_STORAGE="root@172.17.32.17:/mnt/bigger-2tb/Rotator/TFTP"
|
||||||
|
|
||||||
|
COMPOSER_DIR=$(pwd)
|
||||||
|
FIRMWARE_DIR="${COMPOSER_DIR}/openipc"
|
||||||
|
TIMESTAMP=$(date +"%Y%m%d")
|
||||||
|
VERSION=$(stat -c"%Y" $0)
|
||||||
|
|
||||||
|
echo_c() {
|
||||||
|
# 30 grey, 31 red, 32 green, 33 yellow, 34 blue, 35 magenta, 36 cyan, 37 white
|
||||||
|
t="\e[1;$1m$2\e[0m" || t="$2"
|
||||||
|
echo -e "$t"
|
||||||
|
}
|
||||||
|
|
||||||
|
copy_to_archive() {
|
||||||
|
echo_c 32 "Copy files to archive"
|
||||||
|
mkdir -p "${COMPOSER_DIR}/archive/${PROJECT}_${TIMESTAMP}"
|
||||||
|
cp -a \
|
||||||
|
${FIRMWARE_DIR}/output/images/autoupdate* \
|
||||||
|
${FIRMWARE_DIR}/output/images/rootfs.squashfs.* \
|
||||||
|
${FIRMWARE_DIR}/output/images/uImage.* \
|
||||||
|
${FIRMWARE_DIR}/output/images/*.tar \
|
||||||
|
${COMPOSER_DIR}/archive/${PROJECT}_${TIMESTAMP}
|
||||||
|
|
||||||
|
echo_c 35 "\nAssembled firmware available in:"
|
||||||
|
tree -C "${COMPOSER_DIR}/archive/${PROJECT}_${TIMESTAMP}"
|
||||||
|
}
|
||||||
|
|
||||||
|
copy_to_tftp() {
|
||||||
|
echo_c 32 "\nCopy files to TFTP server"
|
||||||
|
scp -r ${FIRMWARE_DIR}/output/images/autoupdate* \
|
||||||
|
${FIRMWARE_DIR}/output/images/rootfs.squashfs.* \
|
||||||
|
${FIRMWARE_DIR}/output/images/uImage.* \
|
||||||
|
${TFTP_STORAGE}
|
||||||
|
}
|
||||||
|
|
||||||
|
select_project() {
|
||||||
|
AVAILABLE_PROJECTS=$(ls -1 ${COMPOSER_DIR}/projects)
|
||||||
|
cmd="whiptail --title \"Available projects\" --menu \"Please select a project from the list below:\" 25 78 16"
|
||||||
|
for p in $AVAILABLE_PROJECTS; do cmd="${cmd} \"$p\" \"\""; done
|
||||||
|
PROJECT=$(eval "${cmd} 3>&1 1>&2 2>&3")
|
||||||
|
if [ $? != 0 ]; then
|
||||||
|
echo_c 31 "Cancelled."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
echo_c 37 "COMPOSER - custom OpenIPC firmware builder"
|
||||||
|
echo_c 30 "https://openipc.org/"
|
||||||
|
echo_c 30 "Version: ${VERSION}"
|
||||||
|
|
||||||
|
while [ -z "${PROJECT}" ]; do select_project; done
|
||||||
|
|
||||||
|
echo_c 31 "\nStarting a project for ${PROJECT}"
|
||||||
|
tree -C ${COMPOSER_DIR}/projects/${PROJECT}
|
||||||
|
|
||||||
|
sleep 3
|
||||||
|
|
||||||
|
echo_c 33 "\nUpdating Composer"
|
||||||
|
git pull
|
||||||
|
|
||||||
|
# rm -rf openipc
|
||||||
|
if [ ! -d "$FIRMWARE_DIR" ]; then
|
||||||
|
echo_c 33 "\nDownloading Firmware"
|
||||||
|
git clone --depth=1 https://github.com/OpenIPC/firmware.git "$FIRMWARE_DIR"
|
||||||
|
cd "$FIRMWARE_DIR"
|
||||||
|
else
|
||||||
|
echo_c 33 "\nUpdating Firmware"
|
||||||
|
cd "$FIRMWARE_DIR"
|
||||||
|
# git reset HEAD --hard
|
||||||
|
# git pull --rebase
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo_c 33 "\nCopying extra packages"
|
||||||
|
cp -afv ${COMPOSER_DIR}/packages/* ${FIRMWARE_DIR}/general/package
|
||||||
|
|
||||||
|
echo_c 33 "\nCopying project files"
|
||||||
|
cp -afv ${COMPOSER_DIR}/projects/${PROJECT}/* ${FIRMWARE_DIR}
|
||||||
|
|
||||||
|
echo_c 33 "\nBuilding the project"
|
||||||
|
./building.sh ${PROJECT}
|
||||||
|
|
||||||
|
copy_to_archive
|
||||||
|
copy_to_tftp
|
||||||
|
echo_c 35 "\nDone"
|
||||||
|
cd "$COMPOSER_DIR"
|
Loading…
Reference in New Issue