-
Notifications
You must be signed in to change notification settings - Fork 1.8k
[baseimage]: upgrade base image to debian buster #4405
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
358d93e
[sonic-slave-buster]: build sonic-slave-buster docker
lguohan 01cb793
[build]: add buster docker as the last step of the build proces
lguohan 9d6760c
[kernel]: build linux kernel 4.19.0-6
lguohan 7f7212d
[broadcom]: build opennsl-modules for kernel 4.19.0-6
lguohan 207e32a
[platform-modules]: fix compile issues for platform driver under 4.19
lguohan 4e07c78
[baseimage]: update python-click to 7.0-1 to support python3
lguohan fc0d4d1
[build]: setup correct debs files dependency for docker targets
lguohan 67cc385
[baseimage]: remove ixgbe.ko as 4.19 has new ixgbe driver
lguohan fb12b0a
[baseimage]: various fixes due to buster changes
lguohan e479a56
[baseimage]: setup ebtables.service in buster image
lguohan 124ce22
[initramfs]: porting loopback file system support patch to v0.133
lguohan d0a3fa4
[sshd]: Create /run/sshd under systemd using RuntimeDirectory
lguohan e5e26d9
[platform-modules]: set debian control file to depend on 4.19.0-6
lguohan 6f5ac4b
[initramfs]: move mke2fs to /usr/local/sbin
lguohan f1cc577
[build_kvm]: mount /proc to show memory
lguohan aec51c8
[docker-wait-any] Use APIClient instead of Client according to API up…
65dfe75
[build]: umount target directory properly
lguohan 7e0cfce
[Mellanox] build mft/hw-management in buster stage
452fc3d
[baseimage]: Install haveged to accelerates crng init
2a237c5
[mgmt-vrf]: mgmt vrf related change for Buster (#53)
bsun-sudo 012c832
[ntp] add ntp support in buster with mgmt vrf (#55)
bsun-sudo ec85c2e
[rsyslog]: setup correct argument for rsyslog.service
lguohan e95504f
[Mellanox]WA to avoid fsroot being corrupted by "dpkg --extract"
3ded45a
[sonic-slave-buster]: user legacy iptables instead of nftables
lguohan dd49f74
[sonic-slave-buster]: add build deps for sonic_yang_mgmt build
lguohan 38a4fdd
[vsimage]: install systemd generator into one image
lguohan 40d2c79
[build]: ensure proc is mounted for raw image build
lguohan f3a1156
[vsraw]: build sonic-vs.raw image
lguohan d0967f5
[dpkg-cache]: add sonic-slave-buster docker file in common dependency
lguohan b171960
[dpkg-cache]: add BLDENV in cache flags for binary-based packages
lguohan e707590
[arista]: Change kernel param for smartsville (#56)
byu343 0095763
[arista]: Update driver submodules to support buster kernel (#57)
byu343 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 | ||
lguohan marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| %:: | ||
| @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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.