summaryrefslogtreecommitdiff
path: root/target/bfin
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2015-10-27 23:24:09 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2015-10-27 23:24:17 +0100
commit87eac2992b7dacd9c4d6e2cf7a5bb51f0bbdca15 (patch)
tree8f68afcd809e1aeb82d034f05c2ae1967d51fed4 /target/bfin
parent93b54ff7293142c6442f06e195e146de4ecbf3cf (diff)
bfin: add least I get a kernel panic in the simulator :)
Diffstat (limited to 'target/bfin')
-rw-r--r--target/bfin/Makefile53
-rw-r--r--target/bfin/kernel/sim-bfin6
2 files changed, 57 insertions, 2 deletions
diff --git a/target/bfin/Makefile b/target/bfin/Makefile
index a000c0f1b..5db509c5c 100644
--- a/target/bfin/Makefile
+++ b/target/bfin/Makefile
@@ -5,5 +5,56 @@ include $(ADK_TOPDIR)/rules.mk
include $(ADK_TOPDIR)/mk/kernel-build.mk
include $(ADK_TOPDIR)/mk/image.mk
-KERNEL:=$(LINUX_DIR)/arch/bfin/boot/uImage
+KERNEL:=$(LINUX_DIR)/$(ADK_TARGET_KERNEL)
+# target helper text
+ifeq ($(ADK_TARGET_FS),archive)
+targethelp:
+ @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSTARBALL)"
+endif
+ifeq ($(ADK_TARGET_FS),initramfs)
+targethelp:
+ @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
+ @echo 'The initramfs image is: ${FW_DIR}/${INITRAMFS}'
+endif
+ifeq ($(ADK_TARGET_FS),initramfsarchive)
+targethelp:
+ @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
+ @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSUSERTARBALL)"
+endif
+ifeq ($(ADK_TARGET_FS),initramfspiggyback)
+targethelp:
+ @echo 'The kernel+initramfs file is: $(FW_DIR)/${TARGET_KERNEL}'
+ifeq ($(ADK_TARGET_SIM),y)
+ @echo "Run the simulator via:"
+ @echo '$(TARGET_CROSS)run --env operating --model bf512 $(FW_DIR)/$(TARGET_KERNEL)'
+endif
+endif
+ifeq ($(ADK_TARGET_FS),nfsroot)
+targethelp:
+ @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
+ @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSUSERTARBALL)"
+endif
+
+kernel-strip:
+ @cp $(KERNEL) $(BUILD_DIR)/$(TARGET_KERNEL)
+
+kernel-install: kernel-strip
+ @cp $(BUILD_DIR)/$(TARGET_KERNEL) $(FW_DIR)/$(TARGET_KERNEL)
+
+# filesystem specific targets
+ifeq ($(ADK_TARGET_FS),archive)
+imageinstall: $(FW_DIR)/$(ROOTFSTARBALL) targethelp
+endif
+ifeq ($(ADK_TARGET_FS),initramfs)
+imageinstall: kernel-install $(FW_DIR)/$(INITRAMFS) targethelp
+endif
+ifeq ($(ADK_TARGET_FS),initramfsarchive)
+imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
+endif
+ifeq ($(ADK_TARGET_FS),initramfspiggyback)
+imageinstall: createinitramfs targethelp
+endif
+ifeq ($(ADK_TARGET_FS),nfsroot)
+imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
+endif
diff --git a/target/bfin/kernel/sim-bfin b/target/bfin/kernel/sim-bfin
index b0cbf7edb..a4a0b9b00 100644
--- a/target/bfin/kernel/sim-bfin
+++ b/target/bfin/kernel/sim-bfin
@@ -1,3 +1,7 @@
CONFIG_BLACKFIN=y
-CONFIG_BF542_std=y
+CONFIG_BF512=y
CONFIG_ICACHE_FLUSH_L1=y
+CONFIG_SERIAL_BFIN=y
+CONFIG_SERIAL_BFIN_CONSOLE=y
+CONFIG_SERIAL_BFIN_UART0=y
+CONFIG_SERIAL_BFIN_UART1=y