Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,9 @@ build-image:
clean:
$(Q)$(RM) $(BIN) $(OBJS) $(deps)
$(Q)$(MAKE) -C mini-gdbstub clean
$(Q)$(MAKE) -C minislirp/src clean
$(Q)if [ -n "$(MINISLIRP_DIR)" ] && [ -d "$(MINISLIRP_DIR)/src" ]; then \
$(MAKE) -C $(MINISLIRP_DIR)/src clean; \
fi

distclean: clean
$(Q)$(RM) riscv-harts.dtsi
Expand Down
2 changes: 1 addition & 1 deletion configs/linux.config
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ CONFIG_NET=y
#
# Networking options
#
# CONFIG_PACKET is not set
CONFIG_PACKET=y
CONFIG_UNIX=y
CONFIG_UNIX_SCM=y
CONFIG_AF_UNIX_OOB=y
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function do_buildroot
{
if [ ! -d buildroot ]; then
echo "Cloning Buildroot..."
ASSERT git clone https://github.com/buildroot/buildroot -b 2024.11.1 --depth=1
ASSERT git clone https://github.com/buildroot/buildroot -b 2025.02.x --depth=1
else
echo "buildroot/ already exists, skipping clone"
fi
Expand Down
Loading