summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--target/linux/config/Config.in.block1
-rw-r--r--target/linux/config/Config.in.netdevice3
-rw-r--r--target/x86_64/Makefile6
-rw-r--r--toolchain/gdb/Makefile.inc4
4 files changed, 10 insertions, 4 deletions
diff --git a/target/linux/config/Config.in.block b/target/linux/config/Config.in.block
index 45f72bdcf..7ab296aae 100644
--- a/target/linux/config/Config.in.block
+++ b/target/linux/config/Config.in.block
@@ -159,6 +159,7 @@ config ADK_KERNEL_SATA_AHCI
select ADK_KERNEL_BLK_DEV
select ADK_KERNEL_BLK_DEV_SD
depends on ADK_TARGET_WITH_SATA
+ default y if ADK_TARGET_SYSTEM_SHUTTLE_SA76
default n
menu "Block devices support"
diff --git a/target/linux/config/Config.in.netdevice b/target/linux/config/Config.in.netdevice
index 3949e9cf9..e9c2eea57 100644
--- a/target/linux/config/Config.in.netdevice
+++ b/target/linux/config/Config.in.netdevice
@@ -167,7 +167,7 @@ config ADK_KERNEL_SKY2
select ADK_KERNEL_NETDEVICES
select ADK_KERNEL_NET_ETHERNET
select ADK_KERNEL_NETDEV_1000
- default y if ADK_TARGET_SYSTEM_SHUTTLE_SA76G2
+ default y if ADK_TARGET_SYSTEM_SHUTTLE_SA76
default n
help
@@ -178,7 +178,6 @@ config ADK_KERNEL_R8169
select ADK_KERNEL_NETDEV_1000
select ADK_KERNEL_MII
select ADK_KPACKAGE_KMOD_FW_LOADER
- default y if ADK_TARGET_SYSTEM_OVH_RPS
default n
help
diff --git a/target/x86_64/Makefile b/target/x86_64/Makefile
index cf27d05df..3361ed1cc 100644
--- a/target/x86_64/Makefile
+++ b/target/x86_64/Makefile
@@ -44,3 +44,9 @@ ifeq ($(ADK_TARGET_SYSTEM_QEMU_X86_64),y)
@echo 'qemu-system-x86_64 -nographic -net user,hostfwd=tcp::2222-:22 -net nic,model=e1000 -kernel $(BIN_DIR)/$(TARGET_KERNEL)'
endif
endif
+ifeq ($(ADK_TARGET_FS),nfsroot)
+imageinstall: $(BIN_DIR)/$(ROOTFSUSERTARBALL)
+ @cp $(KERNEL) $(BIN_DIR)/$(TARGET_KERNEL)
+ @echo 'The linux kernel is here: $(BIN_DIR)/$(TARGET_KERNEL)'
+ @echo 'The nfs root tarball is: ${BIN_DIR}/${ROOTFSUSERTARBALL}'
+endif
diff --git a/toolchain/gdb/Makefile.inc b/toolchain/gdb/Makefile.inc
index f5a40133e..ab628bc15 100644
--- a/toolchain/gdb/Makefile.inc
+++ b/toolchain/gdb/Makefile.inc
@@ -2,8 +2,8 @@
# material, please see the LICENCE file in the top-level directory.
PKG_NAME:= gdb
-PKG_VERSION:= 7.3
-PKG_MD5SUM:= 485022b8df7ba2221f217e128f479fe7
+PKG_VERSION:= 7.3.1
+PKG_MD5SUM:= b89a5fac359c618dda97b88645ceab47
PKG_RELEASE:= 1
PKG_SITES:= ${MASTER_SITE_GNU:=gdb/}
DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.bz2