1848fb262b
Put a flag for fast-reboot to the db using EXPIRE feature. Using this flag in other part of SONiC to start in Fast-reboot mode. If we reload a config, the state in the db will be removed.
18 lines
565 B
Makefile
18 lines
565 B
Makefile
# Docker base image (based on Debian Stretch)
|
|
|
|
DOCKER_BASE_STRETCH = docker-base-stretch.gz
|
|
$(DOCKER_BASE_STRETCH)_PATH = $(DOCKERS_PATH)/docker-base-stretch
|
|
$(DOCKER_BASE_STRETCH)_DEPENDS += $(SUPERVISOR) $(REDIS_TOOLS)
|
|
$(DOCKER_BASE_STRETCH)_DEPENDS += $(SOCAT)
|
|
|
|
GDB = gdb
|
|
GDBSERVER = gdbserver
|
|
VIM = vim
|
|
OPENSSH = openssh-client
|
|
SSHPASS = sshpass
|
|
STRACE = strace
|
|
$(DOCKER_BASE_STRETCH)_DBG_IMAGE_PACKAGES += $(GDB) $(GDBSERVER) $(VIM) $(OPENSSH) $(SSHPASS) $(STRACE)
|
|
|
|
SONIC_DOCKER_IMAGES += $(DOCKER_BASE_STRETCH)
|
|
SONIC_STRETCH_DOCKERS += $(DOCKER_BASE_STRETCH)
|