Support possible dynamic generation of the boot-config if not present.

This commit is contained in:
Jeffrey Townsend
2016-05-20 00:09:24 +00:00
parent 95997e7983
commit dd4ebb7904

View File

@@ -23,11 +23,10 @@ field "$ONL_PLATFORM" " Platform: $ONL_PLATFORM"
field "MA1_ADDR" " ma1: $MA1_ADDR" field "MA1_ADDR" " ma1: $MA1_ADDR"
echo "*" echo "*"
echo "************************************************************" echo "************************************************************"
if [ -f /etc/onl/boot-config ]; then if [ -s /etc/onl/boot-config ]; then
msg_info "boot-config" msg_info "boot-config"
cat /etc/onl/boot-config cat /etc/onl/boot-config
else else
if [ -f /bin/boot-config.py ]; then if [ -f /bin/boot-config.py ]; then
if /bin/boot-config.py configure; then if /bin/boot-config.py configure; then
echo "The system will now reboot to apply your configuration." echo "The system will now reboot to apply your configuration."
@@ -36,7 +35,7 @@ else
echo "The boot-config script failed." >> /etc/onl/abort echo "The boot-config script failed." >> /etc/onl/abort
fi fi
else else
msg_info "No boot-config" echo "No boot-config." >> /etc/onl/abort
fi fi
fi fi