From: <kr...@us...> - 2007-05-15 14:07:56
|
Revision: 1056 http://svn.sourceforge.net/astlinux/?rev=1056&view=rev Author: krisk84 Date: 2007-05-15 07:07:55 -0700 (Tue, 15 May 2007) Log Message: ----------- additional support for runnix with serial ports Modified Paths: -------------- trunk/target/device/geni586/Makefile.in trunk/target/device/net4801/Makefile.in trunk/target/device/net5501/Makefile.in trunk/target/device/via/Makefile.in trunk/target/device/wrap/Makefile.in trunk/toolchain/astrelease/astrelease.mk Added Paths: ----------- trunk/target/device/geni586/runnix-serial/ trunk/target/device/geni586/runnix-serial/runnix.conf trunk/target/device/geni586/runnix-serial/syslinux.cfg trunk/target/device/via/runnix/syslinux.cfg trunk/target/device/via/runnix-serial/ trunk/target/device/via/runnix-serial/runnix.conf trunk/target/device/via/runnix-serial/syslinux.cfg Modified: trunk/target/device/geni586/Makefile.in =================================================================== --- trunk/target/device/geni586/Makefile.in 2007-05-15 14:06:54 UTC (rev 1055) +++ trunk/target/device/geni586/Makefile.in 2007-05-15 14:07:55 UTC (rev 1056) @@ -7,9 +7,11 @@ UCLIBC_CONFIG_FILE=$(GENI586_PATH)/uClibc.config TARGET_SKEL2_DIR=$(GENI586_PATH)/target_skeleton BR2_PACKAGE_BUSYBOX_CONFIG:=$(GENI586_PATH)/busybox.config +TARGET_RUNNIX_DIR=$(GENI586_PATH)/runnix ifeq ($(strip $(BR2_TARGET_GENI586_SERIAL)),y) TARGET_SKEL2_DIR=$(GENI586_PATH)/target_skeleton-serial +TARGET_RUNNIX_DIR=$(GENI586_PATH)/runnix-serial endif ifeq ($(strip $(BR2_PACKAGE_LINUX)),y) Added: trunk/target/device/geni586/runnix-serial/runnix.conf =================================================================== --- trunk/target/device/geni586/runnix-serial/runnix.conf (rev 0) +++ trunk/target/device/geni586/runnix-serial/runnix.conf 2007-05-15 14:07:55 UTC (rev 1056) @@ -0,0 +1,10 @@ +# Kernel command line +KCMD="root=/dev/ram0 rw init=/linuxrc console=ttyS0,19200n8 astlinux=geni586 astimg=ASTVER.run astkd=/dev/sda1 astlive ide=nodma" +# Offset for root filesystem +# OFFSET="32256" +# location of kernel binary inside root (include mountpoint) +KERN="/mnt/root/boot/bzImage" +# root fs type +FSTYPE="squashfs" +# initrd location relative to runnix / +INITRD="/mnt/base/os/initrd.img" Added: trunk/target/device/geni586/runnix-serial/syslinux.cfg =================================================================== --- trunk/target/device/geni586/runnix-serial/syslinux.cfg (rev 0) +++ trunk/target/device/geni586/runnix-serial/syslinux.cfg 2007-05-15 14:07:55 UTC (rev 1056) @@ -0,0 +1,10 @@ +serial 0 19200 +console 1 +default runnix +timeout 5 +prompt 1 +display boot.msg + +label runnix + kernel runnix + append initrd=runnix.img root=/dev/ram0 rw init=/runnix console=ttyS0,19200n8 runimg=auto rootdelay=10 Property changes on: trunk/target/device/geni586/runnix-serial/syslinux.cfg ___________________________________________________________________ Name: svn:executable + * Modified: trunk/target/device/net4801/Makefile.in =================================================================== --- trunk/target/device/net4801/Makefile.in 2007-05-15 14:06:54 UTC (rev 1055) +++ trunk/target/device/net4801/Makefile.in 2007-05-15 14:07:55 UTC (rev 1056) @@ -7,6 +7,7 @@ UCLIBC_CONFIG_FILE=$(SOEKRIS_NET4801_PATH)/uClibc.config TARGET_SKEL2_DIR=$(SOEKRIS_NET4801_PATH)/target_skeleton BR2_PACKAGE_BUSYBOX_CONFIG:=$(SOEKRIS_NET4801_PATH)/busybox.config +TARGET_RUNNIX_DIR=$(SOEKRIS_NET4801_PATH)/runnix ifeq ($(strip $(BR2_PACKAGE_LINUX)),y) TARGETS+=linux Modified: trunk/target/device/net5501/Makefile.in =================================================================== --- trunk/target/device/net5501/Makefile.in 2007-05-15 14:06:54 UTC (rev 1055) +++ trunk/target/device/net5501/Makefile.in 2007-05-15 14:07:55 UTC (rev 1056) @@ -7,6 +7,7 @@ UCLIBC_CONFIG_FILE=$(SOEKRIS_NET5501_PATH)/uClibc.config TARGET_SKEL2_DIR=$(SOEKRIS_NET5501_PATH)/target_skeleton BR2_PACKAGE_BUSYBOX_CONFIG:=$(SOEKRIS_NET5501_PATH)/busybox.config +TARGET_RUNNIX_DIR=$(SOEKRIS_NET5501_PATH)/runnix ifeq ($(strip $(BR2_PACKAGE_LINUX)),y) TARGETS+=linux Modified: trunk/target/device/via/Makefile.in =================================================================== --- trunk/target/device/via/Makefile.in 2007-05-15 14:06:54 UTC (rev 1055) +++ trunk/target/device/via/Makefile.in 2007-05-15 14:07:55 UTC (rev 1056) @@ -7,9 +7,11 @@ UCLIBC_CONFIG_FILE=$(VIA_PATH)/uClibc.config TARGET_SKEL2_DIR=$(VIA_PATH)/target_skeleton BR2_PACKAGE_BUSYBOX_CONFIG:=$(VIA_PATH)/busybox.config +TARGET_RUNNIX_DIR=$(VIA_PATH)/runnix ifeq ($(strip $(BR2_TARGET_VIA_SERIAL)),y) TARGET_SKEL2_DIR=$(VIA_PATH)/target_skeleton-serial +TARGET_RUNNIX_DIR=$(VIA_PATH)/runnix-serial endif ifeq ($(strip $(BR2_PACKAGE_LINUX)),y) Added: trunk/target/device/via/runnix/syslinux.cfg =================================================================== --- trunk/target/device/via/runnix/syslinux.cfg (rev 0) +++ trunk/target/device/via/runnix/syslinux.cfg 2007-05-15 14:07:55 UTC (rev 1056) @@ -0,0 +1,10 @@ +# serial 0 19200 +# console 1 +default runnix +timeout 5 +prompt 1 +display boot.msg + +label runnix + kernel runnix + append initrd=runnix.img root=/dev/ram0 rw init=/runnix runimg=auto rootdelay=10 Property changes on: trunk/target/device/via/runnix/syslinux.cfg ___________________________________________________________________ Name: svn:executable + * Added: trunk/target/device/via/runnix-serial/runnix.conf =================================================================== --- trunk/target/device/via/runnix-serial/runnix.conf (rev 0) +++ trunk/target/device/via/runnix-serial/runnix.conf 2007-05-15 14:07:55 UTC (rev 1056) @@ -0,0 +1,10 @@ +# Kernel command line +KCMD="root=/dev/ram0 rw init=/linuxrc console=ttyS0,19200n8 astlinux=via astimg=ASTVER.run astkd=/dev/sda1 astlive ide=nodma" +# Offset for root filesystem +# OFFSET="32256" +# location of kernel binary inside root (include mountpoint) +KERN="/mnt/root/boot/bzImage" +# root fs type +FSTYPE="squashfs" +# initrd location relative to runnix / +INITRD="/mnt/base/os/initrd.img" Added: trunk/target/device/via/runnix-serial/syslinux.cfg =================================================================== --- trunk/target/device/via/runnix-serial/syslinux.cfg (rev 0) +++ trunk/target/device/via/runnix-serial/syslinux.cfg 2007-05-15 14:07:55 UTC (rev 1056) @@ -0,0 +1,10 @@ +serial 0 19200 +console 1 +default runnix +timeout 5 +prompt 1 +display boot.msg + +label runnix + kernel runnix + append initrd=runnix.img root=/dev/ram0 rw init=/runnix console=ttyS0,19200n8 runimg=auto rootdelay=10 Property changes on: trunk/target/device/via/runnix-serial/syslinux.cfg ___________________________________________________________________ Name: svn:executable + * Modified: trunk/target/device/wrap/Makefile.in =================================================================== --- trunk/target/device/wrap/Makefile.in 2007-05-15 14:06:54 UTC (rev 1055) +++ trunk/target/device/wrap/Makefile.in 2007-05-15 14:07:55 UTC (rev 1056) @@ -8,6 +8,7 @@ UCLIBC_CONFIG_FILE=$(PCENGINES_WRAP_PATH)/uClibc.config TARGET_SKEL2_DIR=$(PCENGINES_WRAP_PATH)/target_skeleton BR2_PACKAGE_BUSYBOX_CONFIG:=$(PCENGINES_WRAP_PATH)/busybox.config +TARGET_RUNNIX_DIR=$(PCENGINES_WRAP_PATH)/runnix ifeq ($(strip $(BR2_PACKAGE_LINUX)),y) TARGETS+=linux Modified: trunk/toolchain/astrelease/astrelease.mk =================================================================== --- trunk/toolchain/astrelease/astrelease.mk 2007-05-15 14:06:54 UTC (rev 1055) +++ trunk/toolchain/astrelease/astrelease.mk 2007-05-15 14:07:55 UTC (rev 1056) @@ -10,7 +10,7 @@ cp $(SQUASHFS_TARGET) $(ASTVER)/$(ASTVER).run (cd $(ASTVER); sha1sum $(ASTVER).run > $(ASTVER).run.sha1) touch $(ASTVER)/astflag - sed -e s/ASTVER/$(ASTVER)/g $(DEV_PATH)/runnix/runnix.conf > \ + sed -e s/ASTVER/$(ASTVER)/g $(TARGET_RUNNIX_DIR)/runnix.conf > \ $(ASTVER)/$(ASTVER).run.conf ifneq ($(wildcard $(DEV_PATH)/runnix/initrd.img),) cp $(DEV_PATH)/runnix/initrd.img $(ASTVER)/initrd.img This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |