summaryrefslogtreecommitdiffstats
path: root/system-images/share/images/gnome-desktop/auto/config
blob: 6a2125656cf7b88b6a900848c41b6ffa2a29f43e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh

set -e

case "$(dpkg --print-architecture)" in
	amd64)
		_SOURCE="true"
		;;

	i386)
		_SOURCE="false"
		;;
esac

lb config noauto \
	--clean \
	--ignore-system-defaults \
	--mode debian \
	--debian-installer live \
	--linux-packages "linux-image linux-headers" \
	--source "${_SOURCE}" \
"${@}"