mirror of
https://github.com/Fishwaldo/build.git
synced 2025-03-22 14:51:41 +00:00
27 lines
476 B
Text
27 lines
476 B
Text
|
#!/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
|
||
|
;;
|
||
|
esac
|