-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4405 from lguohan/buster
[baseimage]: upgrade base image to debian buster bring up the base image to debian buster 4.19 kernel. using the merge commits to preserve the individual commits to better track the history.
- Loading branch information
Showing
165 changed files
with
1,116 additions
and
375 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,36 @@ | ||
# SONiC make file | ||
|
||
NOJESSIE ?= 0 | ||
NOSTRETCH ?= 0 | ||
|
||
%:: | ||
@echo "+++ --- Making $@ --- +++" | ||
ifeq ($(NOJESSIE), 0) | ||
EXTRA_JESSIE_TARGETS=$(notdir $@) make -f Makefile.work jessie | ||
EXTRA_DOCKER_TARGETS=$(notdir $@) make -f Makefile.work jessie | ||
endif | ||
BLDENV=stretch make -f Makefile.work $@ | ||
ifeq ($(NOSTRETCH), 0) | ||
EXTRA_DOCKER_TARGETS=$(notdir $@) BLDENV=stretch make -f Makefile.work stretch | ||
endif | ||
BLDENV=buster make -f Makefile.work $@ | ||
|
||
jessie: | ||
@echo "+++ Making $@ +++" | ||
ifeq ($(NOJESSIE), 0) | ||
make -f Makefile.work jessie | ||
endif | ||
|
||
stretch: | ||
@echo "+++ Making $@ +++" | ||
ifeq ($(NOSTRETCH), 0) | ||
make -f Makefile.work stretch | ||
endif | ||
|
||
clean reset init configure showtag sonic-slave-build sonic-slave-bash : | ||
@echo "+++ Making $@ +++" | ||
ifeq ($(NOJESSIE), 0) | ||
make -f Makefile.work $@ | ||
endif | ||
ifeq ($(NOSTRETCH), 0) | ||
BLDENV=stretch make -f Makefile.work $@ | ||
endif | ||
BLDENV=buster make -f Makefile.work $@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.