mirror of
https://github.com/Fishwaldo/build.git
synced 2025-03-21 22:31:51 +00:00
29 lines
470 B
Bash
29 lines
470 B
Bash
#!/bin/bash
|
|
|
|
# arguments: $RELEASE $FAMILY $BOARD $BUILD_DESKTOP
|
|
#
|
|
# This is the image customization script
|
|
#
|
|
# NOTE: It is copied to /tmp directory inside the image
|
|
# and executed there inside chroot environment
|
|
# so don't reference any files that are not already installed
|
|
|
|
RELEASE=$1
|
|
FAMILY=$2
|
|
BOARD=$3
|
|
BUILD_DESKTOP=$4
|
|
|
|
case $RELEASE in
|
|
wheezy)
|
|
# your code here
|
|
;;
|
|
jessie)
|
|
# your code here
|
|
;;
|
|
trusty)
|
|
# your code here
|
|
;;
|
|
xenial)
|
|
# your code here
|
|
;;
|
|
esac
|