summaryrefslogtreecommitdiff
path: root/examples/kconfig-static/nfpvalues.sh
blob: 574aa47d10a0ebcfb3ae9ea21f9ace686691f80b (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

. ./.config

X=0
Y=0

if [ "$CONFIG_X5" = y ]; then
	X=5
fi
if [ "$CONFIG_X6" = y ]; then
	X=6
fi

if [ "$CONFIG_Y0" = y ]; then
	Y=0
fi
if [ "$CONFIG_Y4" = y ]; then
	Y=4
fi

echo '{"Synthetic": {"X": '$X', "Y": '$Y'}}'