code changes to support phoenix/radisys RLT-3200G

Change-Id: I5ad79e3bf23d1ce58a73c5059a061fbd44168c48
diff --git a/agent/download/Makefile.onl b/agent/download/Makefile.onl
index 9f87264..97509e7 100644
--- a/agent/download/Makefile.onl
+++ b/agent/download/Makefile.onl
@@ -14,6 +14,7 @@
 
 COMMIT_ID = 72b95a7
 INBAND = "n"
+BOARD = ""
 
 onl-4.14:
 	if [ $(INBAND) = y ]; then \
@@ -21,3 +22,9 @@
 	else \
 	    cd OpenNetworkLinux && git stash && git checkout -B $@ $(COMMIT_ID) && docker/tools/onlbuilder --non-interactive -8 -c ./build-onl.sh; \
 	fi;
+onl-4.19:
+	if [ "$(BOARD)" = "phoenix" ]; then \
+	        cd OpenNetworkLinux && git stash && git checkout -B $@ $(COMMIT_ID) && bash update_kernel_options.sh && docker/tools/onlbuilder --non-interactive -9 -c ./build-onl.sh; \
+	else \
+		cd OpenNetworkLinux && git stash && git checkout -B $@ $(COMMIT_ID) && docker/tools/onlbuilder --non-interactive -9 -c ./build-onl.sh; \
+	fi;