Skip to content

Commit

Permalink
remove console statements
Browse files Browse the repository at this point in the history
  • Loading branch information
fouwels committed Jul 20, 2021
1 parent 80cbb81 commit 8d4c60d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ RUN cd init && go build -ldflags "-s -w" -o /rootfs/init && strip /rootfs/init

# Copy in primary config, and default secondary config to rootfs
ARG CONFIG_PRIMARY=CONFIG_PRIMARY_UNSET
COPY /config/primary/$CONFIG_PRIMARY /rootfs/config/primary.yml
COPY /config/secondary/default.yml /rootfs/config/secondary.yml
COPY config/primary/$CONFIG_PRIMARY /rootfs/config/primary.yml
COPY config/secondary/default.yml /rootfs/config/secondary.yml
RUN find /rootfs > ${OUT_DIR}/rootfs.txt

# Build initramfs
Expand Down
2 changes: 1 addition & 1 deletion config/config-5.10.1-rt20
Original file line number Diff line number Diff line change
Expand Up @@ -3834,7 +3834,7 @@ CONFIG_COMMON_CLK=y
CONFIG_COMMON_CLK_SI544=m
CONFIG_CODA_FS=m
CONFIG_CNIC=m
CONFIG_CMDLINE="isolcpus=3 irqaffinity=0,1,2 rcu-nocbs=3 idle=poll console=tty0 console=ttyS0,9600n8"
CONFIG_CMDLINE="isolcpus=3 irqaffinity=0,1,2 rcu-nocbs=3 idle=poll"
CONFIG_CMDLINE_BOOL=y
CONFIG_CLZ_TAB=y
CONFIG_CLS_U32_PERF=y
Expand Down
2 changes: 1 addition & 1 deletion deploy/qemu/qemu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ EOF
QEMU_DISPLAY="-display vnc=:0"

if [ "$COMMAND" = "kernel" ]; then
QEMU_DISK="-kernel $EFI -nographic"
QEMU_DISK="-kernel $EFI --append console=ttyS0 -nographic"
fi
if [ "$COMMAND" = "disk" ]; then
QEMU_DISK="-serial mon:stdio -boot menu=on\
Expand Down

0 comments on commit 8d4c60d

Please sign in to comment.