#!/bin/bash


if [ -f /sys/devices/soc0/serial_number ]; then
	cat /sys/devices/soc0/serial_number
	exit 0
fi

echo "none"
exit 1
