File tree Expand file tree Collapse file tree 2 files changed +12
-8
lines changed
Expand file tree Collapse file tree 2 files changed +12
-8
lines changed Original file line number Diff line number Diff line change 11#! /bin/bash
22
3- # Use Directly from Docker hub if not provided:
4- IMG_NAME=" ${IMG_NAME:- nishanthmenon/ arm-kernel-dev} "
3+ # Use Directly from github container registry if not provided:
4+ # dockerhub location is nishanthmenon/arm-kernel-dev
5+ IMG_NAME=" ${IMG_NAME:- ghcr.io/ nmenon/ arm-kernel-dev} "
56
67# TBD: If we are using from github -> I need to figure out how to get that working..
78
@@ -19,9 +20,10 @@ if [ -z "$dimg" ]; then
1920 echo " Please install Docker Image arm-kernel-dev from: cd" ` dirname $0 ` " ;make"
2021 exit 1
2122fi
22- # If we are working off docker image from docker hub, make sure
23+
24+ # If we are working off docker image from github container reg, make sure
2325# we have the latest.
24- if [ " $IMG_NAME " = " nishanthmenon /arm-kernel-dev" ]; then
26+ if [ " $IMG_NAME " = " ghcr.io/nmenon /arm-kernel-dev" ]; then
2527 docker pull $IMG_NAME
2628fi
2729ccache=` which ccache`
Original file line number Diff line number Diff line change 22
33# Check if Docker image exists
44
5- # Use Directly from Docker hub if not provided:
6- IMG_NAME=" ${IMG_NAME:- nishanthmenon/ arm-kernel-dev} "
5+ # Use Directly from github container registry if not provided:
6+ # dockerhub location is nishanthmenon/arm-kernel-dev
7+ IMG_NAME=" ${IMG_NAME:- ghcr.io/ nmenon/ arm-kernel-dev} "
78
89# TBD: If we are using from github -> I need to figure out how to get that working..
910
@@ -21,9 +22,10 @@ if [ -z "$dimg" ]; then
2122 echo " Please install Docker Image arm-kernel-dev from: cd" ` dirname $0 ` " ;make"
2223 exit 1
2324fi
24- # If we are working off docker image from docker hub, make sure
25+
26+ # If we are working off docker image from github container reg, make sure
2527# we have the latest.
26- if [ " $IMG_NAME " = " nishanthmenon /arm-kernel-dev" ]; then
28+ if [ " $IMG_NAME " = " ghcr.io/nmenon /arm-kernel-dev" ]; then
2729 docker pull $IMG_NAME
2830fi
2931ccache=` which ccache`
You can’t perform that action at this time.
0 commit comments