This is the mail archive of the ecos-patches@sources.redhat.com mailing list for the eCos project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: tail +2 fix


On Thu, 2004-04-22 at 09:08, Jani Monoses wrote:
> > 
> > Does this new syntax work with all older versions of 'tail'?
> 
> Yes, it was the `official` syntax anyway, now they just no longer support
> the less formal old one.

Fine.  I'm committing this now (patch attached)
-- 
Gary Thomas <gary@mlbassoc.com>
MLB Associates
Index: hal/arm/aeb/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/arm/aeb/current/ChangeLog,v
retrieving revision 1.29
diff -u -5 -p -r1.29 ChangeLog
--- hal/arm/aeb/current/ChangeLog	24 Jul 2003 20:23:55 -0000	1.29
+++ hal/arm/aeb/current/ChangeLog	22 Apr 2004 14:56:55 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_arm_aeb.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-07-18  Nick Garnett  <nickg@balti.calivar.com>
 
 	* cdl/hal_arm_aeb.cdl:
         Changed values for CYGNUM_HAL_RTC_NUMERATOR,
         CYGNUM_HAL_RTC_DENOMINATOR and CYGNUM_HAL_RTC_PERIOD to
Index: hal/arm/aeb/current/cdl/hal_arm_aeb.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/arm/aeb/current/cdl/hal_arm_aeb.cdl,v
retrieving revision 1.9
diff -u -5 -p -r1.9 hal_arm_aeb.cdl
--- hal/arm/aeb/current/cdl/hal_arm_aeb.cdl	24 Jul 2003 20:23:57 -0000	1.9
+++ hal/arm/aeb/current/cdl/hal_arm_aeb.cdl	22 Apr 2004 14:56:55 -0000
@@ -224,11 +224,11 @@ cdl_package CYGPKG_HAL_ARM_AEB {
                 $(OBJCOPY) -O binary src/gdb_module_ncs.img src/gdb_module_ncs.bin
                 @rm src/gdb_module_ncs.tmp src/gdb_module_ncs.img
                 # Prepare dependency file
                 @echo $@ ": \\" > $(notdir $@).deps
                 @echo $(wildcard $(PREFIX)/lib/*) " \\" >> $(notdir $@).deps
-                @tail +2 deps.tmp >> $(notdir $@).deps
+                @tail -n +2 deps.tmp >> $(notdir $@).deps
                 @echo >> $(notdir $@).deps
                 @rm deps.tmp
                 # Then build version with checksum from previously built image.
                 @cp $(dir $<)flash_cksum.tcl src/
                 $(CC) -c -DCHECKSUM=`src/flash_cksum.tcl src/gdb_module_ncs.bin` $(INCLUDE_PATH) -I$(dir $<) $(CFLAGS) -o src/gdb_module.o $<
Index: hal/arm/arch/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/arm/arch/current/ChangeLog,v
retrieving revision 1.95
diff -u -5 -p -r1.95 ChangeLog
--- hal/arm/arch/current/ChangeLog	8 Nov 2003 15:42:42 -0000	1.95
+++ hal/arm/arch/current/ChangeLog	22 Apr 2004 14:56:55 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_arm.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-11-05  Roland Caßebohm  <roland.cassebohm@visionsystems.de>
 
         * include/hal_io.h: If defined HAL_IO_MACROS_NO_ADDRESS_MUNGING
         use macros which don't mung the addresses even if the platform
         is big-endian. Platforms which don't need address munging can
Index: hal/arm/arch/current/cdl/hal_arm.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/arm/arch/current/cdl/hal_arm.cdl,v
retrieving revision 1.13
diff -u -5 -p -r1.13 hal_arm.cdl
--- hal/arm/arch/current/cdl/hal_arm.cdl	6 May 2003 21:00:18 -0000	1.13
+++ hal/arm/arch/current/cdl/hal_arm.cdl	22 Apr 2004 14:56:55 -0000
@@ -68,29 +68,29 @@ cdl_package CYGPKG_HAL_ARM {
     make -priority 1 {
         arm.inc : <PACKAGE>/src/hal_mk_defs.c
         $(CC) $(CFLAGS) $(INCLUDE_PATH) -Wp,-MD,arm.tmp -o hal_mk_defs.tmp -S $<
         fgrep .equ hal_mk_defs.tmp | sed s/#// > $@
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 arm.tmp >> $(notdir $@).deps
+        @tail -n +2 arm.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm arm.tmp hal_mk_defs.tmp
     }
 
     make {
         <PREFIX>/lib/vectors.o : <PACKAGE>/src/vectors.S
         $(CC) -Wp,-MD,vectors.tmp $(INCLUDE_PATH) $(CFLAGS) -c -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 vectors.tmp >> $(notdir $@).deps
+        @tail -n +2 vectors.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm vectors.tmp
     }
 
     make {
         <PREFIX>/lib/target.ld: <PACKAGE>/src/arm.ld
         $(CC) -E -P -Wp,-MD,target.tmp -xc $(INCLUDE_PATH) $(CFLAGS) -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 target.tmp >> $(notdir $@).deps
+        @tail -n +2 target.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm target.tmp
     }
 
     cdl_interface CYGINT_HAL_ARM_THUMB_ARCH {
Index: hal/arm/e7t/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/arm/e7t/current/ChangeLog,v
retrieving revision 1.14
diff -u -5 -p -r1.14 ChangeLog
--- hal/arm/e7t/current/ChangeLog	5 Dec 2003 09:56:55 -0000	1.14
+++ hal/arm/e7t/current/ChangeLog	22 Apr 2004 14:56:55 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_arm_e7t.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-12-05  Andrew Lunn  <andrew.lunn@ascom.ch>
 
 	* include/hal_diag.h: hal_delay_us is a C function.
 	
 2003-11-05  Roland Caßebohm  <roland.cassebohm@visionsystems.de>
Index: hal/arm/e7t/current/cdl/hal_arm_e7t.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/arm/e7t/current/cdl/hal_arm_e7t.cdl,v
retrieving revision 1.6
diff -u -5 -p -r1.6 hal_arm_e7t.cdl
--- hal/arm/e7t/current/cdl/hal_arm_e7t.cdl	24 Jul 2003 20:23:58 -0000	1.6
+++ hal/arm/e7t/current/cdl/hal_arm_e7t.cdl	22 Apr 2004 14:56:55 -0000
@@ -283,11 +283,11 @@ cdl_package CYGPKG_HAL_ARM_E7T {
                 $(OBJCOPY) -O binary src/redboot_ncs.img src/redboot_ncs.bin
 #                @rm src/redboot_ncs.tmp src/redboot_ncs.img
                 # Prepare dependency file
                 @echo $@ ": \\" > $(notdir $@).deps
                 @echo $(wildcard $(PREFIX)/lib/*) " \\" >> $(notdir $@).deps
-                @tail +2 deps.tmp >> $(notdir $@).deps
+                @tail -n +2 deps.tmp >> $(notdir $@).deps
                 @echo >> $(notdir $@).deps
                 @rm deps.tmp
                 # Then build version with checksum from previously built image.
                 @cp $(dir $<)flash_cksum.tcl src/
                 $(CC) -c -DCHECKSUM=`src/flash_cksum.tcl src/redboot_ncs.bin` $(INCLUDE_PATH) -I$(dir $<) $(CFLAGS) -o src/redboot.o $<
Index: hal/arm/edb7xxx/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/arm/edb7xxx/current/ChangeLog,v
retrieving revision 1.46
diff -u -5 -p -r1.46 ChangeLog
--- hal/arm/edb7xxx/current/ChangeLog	5 Dec 2003 09:56:55 -0000	1.46
+++ hal/arm/edb7xxx/current/ChangeLog	22 Apr 2004 14:56:55 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_arm_edb7xxx.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-12-05  Andrew Lunn  <andrew.lunn@ascom.ch>
 
 	* include/hal_diag.h: hal_delay_us() is a C function.
 
 
Index: hal/arm/edb7xxx/current/cdl/hal_arm_edb7xxx.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/arm/edb7xxx/current/cdl/hal_arm_edb7xxx.cdl,v
retrieving revision 1.18
diff -u -5 -p -r1.18 hal_arm_edb7xxx.cdl
--- hal/arm/edb7xxx/current/cdl/hal_arm_edb7xxx.cdl	24 Jul 2003 20:23:59 -0000	1.18
+++ hal/arm/edb7xxx/current/cdl/hal_arm_edb7xxx.cdl	22 Apr 2004 14:56:55 -0000
@@ -391,11 +391,11 @@ CL-PS7111 and EP7xxx based development b
                 <PREFIX>/bin/prog_flash.img : <PACKAGE>/misc/prog_flash.c
                 @sh -c "mkdir -p misc $(dir $@)"
                 $(CC) -c $(INCLUDE_PATH) -Wp,-MD,deps.tmp -I$(dir $<) $(CFLAGS) -o misc/prog_flash.o $<
                 @echo $@ ": \\" > $(notdir $@).deps
                 @echo $(wildcard $(PREFIX)/lib/*) " \\" >> $(notdir $@).deps
-                @tail +2 deps.tmp >> $(notdir $@).deps
+                @tail -n +2 deps.tmp >> $(notdir $@).deps
                 @echo >> $(notdir $@).deps
                 @rm deps.tmp
                 $(CC) $(LDFLAGS) -L$(PREFIX)/lib -Ttarget.ld -o $@ misc/prog_flash.o
             }
         }
@@ -415,11 +415,11 @@ CL-PS7111 and EP7xxx based development b
                 <PREFIX>/bin/lcd_test.img : <PACKAGE>/misc/lcd_test.c
                 @sh -c "mkdir -p misc $(dir $@)"
                 $(CC) -c $(INCLUDE_PATH) -Wp,-MD,deps.tmp -I$(dir $<) $(CFLAGS) -o misc/lcd_test.o $<
                 @echo $@ ": \\" > $(notdir $@).deps
                 @echo $(wildcard $(PREFIX)/lib/*) " \\" >> $(notdir $@).deps
-                @tail +2 deps.tmp >> $(notdir $@).deps
+                @tail -n +2 deps.tmp >> $(notdir $@).deps
                 @echo >> $(notdir $@).deps
                 @rm deps.tmp
                 $(CC) $(LDFLAGS) -L$(PREFIX)/lib -Ttarget.ld -o $@ misc/lcd_test.o
             }
 
@@ -427,11 +427,11 @@ CL-PS7111 and EP7xxx based development b
                 <PREFIX>/bin/panel_test.img : <PACKAGE>/misc/panel_test.c
                 @sh -c "mkdir -p misc $(dir $@)"
                 $(CC) -c $(INCLUDE_PATH) -Wp,-MD,deps.tmp -I$(dir $<) $(CFLAGS) -o misc/panel_test.o $<
                 @echo $@ ": \\" > $(notdir $@).deps
                 @echo $(wildcard $(PREFIX)/lib/*) " \\" >> $(notdir $@).deps
-                @tail +2 deps.tmp >> $(notdir $@).deps
+                @tail -n +2 deps.tmp >> $(notdir $@).deps
                 @echo >> $(notdir $@).deps
                 @rm deps.tmp
                 $(CC) $(LDFLAGS) -L$(PREFIX)/lib -Ttarget.ld -o $@ misc/panel_test.o
             }
 
@@ -439,11 +439,11 @@ CL-PS7111 and EP7xxx based development b
                 <PREFIX>/bin/kbd_test.img : <PACKAGE>/misc/kbd_test.c
                 @sh -c "mkdir -p misc $(dir $@)"
                 $(CC) -c $(INCLUDE_PATH) -Wp,-MD,deps.tmp -I$(dir $<) $(CFLAGS) -o misc/kbd_test.o $<
                 @echo $@ ": \\" > $(notdir $@).deps
                 @echo $(wildcard $(PREFIX)/lib/*) " \\" >> $(notdir $@).deps
-                @tail +2 deps.tmp >> $(notdir $@).deps
+                @tail -n +2 deps.tmp >> $(notdir $@).deps
                 @echo >> $(notdir $@).deps
                 @rm deps.tmp
                 $(CC) $(LDFLAGS) -L$(PREFIX)/lib -Ttarget.ld -o $@ misc/kbd_test.o
             }
 
@@ -451,11 +451,11 @@ CL-PS7111 and EP7xxx based development b
                 <PREFIX>/bin/i2s_audio_test.img : <PACKAGE>/misc/i2s_audio_test.c <PACKAGE>/misc/i2s_audio_fiq.S
                 @sh -c "mkdir -p misc $(dir $@)"
                 $(CC) -c $(INCLUDE_PATH) -Wp,-MD,deps.tmp -I$(dir $<) $(CFLAGS) -o misc/i2s_audio_test.o $<
                 @echo $@ ": \\" > $(notdir $@).deps
                 @echo $(wildcard $(PREFIX)/lib/*) " \\" >> $(notdir $@).deps
-                @tail +2 deps.tmp >> $(notdir $@).deps
+                @tail -n +2 deps.tmp >> $(notdir $@).deps
                 @echo >> $(notdir $@).deps
                 # warning: no proper deps here
                 $(CC) -c $(INCLUDE_PATH) -I$(dir $<) $(CFLAGS) -o misc/i2s_audio_fiq.o $(REPOSITORY)/$(PACKAGE)/misc/i2s_audio_fiq.S
                 $(CC) $(LDFLAGS) -L$(PREFIX)/lib -Ttarget.ld -o $@ misc/i2s_audio_test.o misc/i2s_audio_fiq.o
             }
Index: hal/arm/gps4020/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/arm/gps4020/current/ChangeLog,v
retrieving revision 1.2
diff -u -5 -p -r1.2 ChangeLog
--- hal/arm/gps4020/current/ChangeLog	5 Dec 2003 09:56:56 -0000	1.2
+++ hal/arm/gps4020/current/ChangeLog	22 Apr 2004 14:56:55 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_arm_gps4020.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-12-05  Andrew Lunn  <andrew.lunn@ascom.ch>
 
 	* include/hal_diag.h: hal_delay_us() is a C function.
 
 2003-11-10  Gary Thomas  <gary@mlbassoc.com>
Index: hal/arm/gps4020/current/cdl/hal_arm_gps4020.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/arm/gps4020/current/cdl/hal_arm_gps4020.cdl,v
retrieving revision 1.1
diff -u -5 -p -r1.1 hal_arm_gps4020.cdl
--- hal/arm/gps4020/current/cdl/hal_arm_gps4020.cdl	24 Nov 2003 15:24:16 -0000	1.1
+++ hal/arm/gps4020/current/cdl/hal_arm_gps4020.cdl	22 Apr 2004 14:56:55 -0000
@@ -213,11 +213,11 @@ cdl_package CYGPKG_HAL_ARM_GPS4020 {
                 $(OBJCOPY) -O binary src/gdb_module_ncs.img src/gdb_module_ncs.bin
                 @rm src/gdb_module_ncs.tmp src/gdb_module_ncs.img
                 # Prepare dependency file
                 @echo $@ ": \\" > $(notdir $@).deps
                 @echo $(wildcard $(PREFIX)/lib/*) " \\" >> $(notdir $@).deps
-                @tail +2 deps.tmp >> $(notdir $@).deps
+                @tail -n +2 deps.tmp >> $(notdir $@).deps
                 @echo >> $(notdir $@).deps
                 @rm deps.tmp
                 # Then build version with checksum from previously built image.
                 @cp $(dir $<)flash_cksum.tcl src/
                 $(CC) -c -DCHECKSUM=`src/flash_cksum.tcl src/gdb_module_ncs.bin` $(INCLUDE_PATH) -I$(dir $<) $(CFLAGS) -o src/gdb_module.o $<
Index: hal/arm/integrator/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/arm/integrator/current/ChangeLog,v
retrieving revision 1.8
diff -u -5 -p -r1.8 ChangeLog
--- hal/arm/integrator/current/ChangeLog	5 Dec 2003 09:56:56 -0000	1.8
+++ hal/arm/integrator/current/ChangeLog	22 Apr 2004 14:56:55 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_arm_integrator.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-12-05  Andrew Lunn  <andrew.lunn@ascom.ch>
 
 	* include/hal_platform_ints.h: hal_delay_us() is a C function.
 
 2003-09-21  Gary Thomas  <gary@mlbassoc.com>
Index: hal/arm/integrator/current/cdl/hal_arm_integrator.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/arm/integrator/current/cdl/hal_arm_integrator.cdl,v
retrieving revision 1.6
diff -u -5 -p -r1.6 hal_arm_integrator.cdl
--- hal/arm/integrator/current/cdl/hal_arm_integrator.cdl	24 Jul 2003 20:23:59 -0000	1.6
+++ hal/arm/integrator/current/cdl/hal_arm_integrator.cdl	22 Apr 2004 14:56:55 -0000
@@ -291,11 +291,11 @@ cdl_package CYGPKG_HAL_ARM_INTEGRATOR {
                 <PREFIX>/bin/prog_flash.img : <PACKAGE>/src/prog_flash.c
                 @sh -c "mkdir -p src $(dir $@)"
                 $(CC) -c $(INCLUDE_PATH) -Wp,-MD,deps.tmp -I$(dir $<) $(CFLAGS) -o src/prog_flash.o $<
                 @echo $@ ": \\" > $(notdir $@).deps
                 @echo $(wildcard $(PREFIX)/lib/*) " \\" >> $(notdir $@).deps
-                @tail +2 deps.tmp >> $(notdir $@).deps
+                @tail -n +2 deps.tmp >> $(notdir $@).deps
                 @echo >> $(notdir $@).deps
                 @rm deps.tmp
                 $(CC) $(LDFLAGS) -L$(PREFIX)/lib -Ttarget.ld -o $@ src/prog_flash.o
             }
         }
@@ -317,11 +317,11 @@ cdl_package CYGPKG_HAL_ARM_INTEGRATOR {
                 <PREFIX>/bin/prog_flash_BE_image_LE_system.img : <PACKAGE>/src/prog_flash.c
                 @sh -c "mkdir -p src $(dir $@)"
                 $(CC) -DBE_IMAGE -c $(INCLUDE_PATH) -Wp,-MD,deps.tmp -I$(dir $<) $(CFLAGS) -o src/prog_flash_be.o $<
                 @echo $@ ": \\" > $(notdir $@).deps
                 @echo $(wildcard $(PREFIX)/lib/*) " \\" >> $(notdir $@).deps
-                @tail +2 deps.tmp >> $(notdir $@).deps
+                @tail -n +2 deps.tmp >> $(notdir $@).deps
                 @echo >> $(notdir $@).deps
                 @rm deps.tmp
                 $(CC) $(LDFLAGS) -L$(PREFIX)/lib -Ttarget.ld -o $@ src/prog_flash_be.o
             }
         }
Index: hal/arm/pid/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/arm/pid/current/ChangeLog,v
retrieving revision 1.36
diff -u -5 -p -r1.36 ChangeLog
--- hal/arm/pid/current/ChangeLog	5 Dec 2003 09:56:56 -0000	1.36
+++ hal/arm/pid/current/ChangeLog	22 Apr 2004 14:56:55 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_arm_pid.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-12-05  Andrew Lunn  <andrew.lunn@ascom.ch>
 
 	* include/hal_diag.h: hal_delay_us() is a C function.
 
 2003-07-18  Nick Garnett  <nickg@balti.calivar.com>
Index: hal/arm/pid/current/cdl/hal_arm_pid.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/arm/pid/current/cdl/hal_arm_pid.cdl,v
retrieving revision 1.15
diff -u -5 -p -r1.15 hal_arm_pid.cdl
--- hal/arm/pid/current/cdl/hal_arm_pid.cdl	24 Jul 2003 20:23:59 -0000	1.15
+++ hal/arm/pid/current/cdl/hal_arm_pid.cdl	22 Apr 2004 14:56:55 -0000
@@ -291,11 +291,11 @@ cdl_package CYGPKG_HAL_ARM_PID {
                 <PREFIX>/bin/prog_flash.img : <PACKAGE>/src/prog_flash.c
                 @sh -c "mkdir -p src $(dir $@)"
                 $(CC) -c $(INCLUDE_PATH) -Wp,-MD,deps.tmp -I$(dir $<) $(CFLAGS) -o src/prog_flash.o $<
                 @echo $@ ": \\" > $(notdir $@).deps
                 @echo $(wildcard $(PREFIX)/lib/*) " \\" >> $(notdir $@).deps
-                @tail +2 deps.tmp >> $(notdir $@).deps
+                @tail -n +2 deps.tmp >> $(notdir $@).deps
                 @echo >> $(notdir $@).deps
                 @rm deps.tmp
                 $(CC) $(LDFLAGS) -L$(PREFIX)/lib -Ttarget.ld -o $@ src/prog_flash.o
             }
         }
@@ -317,11 +317,11 @@ cdl_package CYGPKG_HAL_ARM_PID {
                 <PREFIX>/bin/prog_flash_BE_image_LE_system.img : <PACKAGE>/src/prog_flash.c
                 @sh -c "mkdir -p src $(dir $@)"
                 $(CC) -DBE_IMAGE -c $(INCLUDE_PATH) -Wp,-MD,deps.tmp -I$(dir $<) $(CFLAGS) -o src/prog_flash_be.o $<
                 @echo $@ ": \\" > $(notdir $@).deps
                 @echo $(wildcard $(PREFIX)/lib/*) " \\" >> $(notdir $@).deps
-                @tail +2 deps.tmp >> $(notdir $@).deps
+                @tail -n +2 deps.tmp >> $(notdir $@).deps
                 @echo >> $(notdir $@).deps
                 @rm deps.tmp
                 $(CC) $(LDFLAGS) -L$(PREFIX)/lib -Ttarget.ld -o $@ src/prog_flash_be.o
             }
         }
Index: hal/calmrisc16/arch/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/calmrisc16/arch/current/ChangeLog,v
retrieving revision 1.4
diff -u -5 -p -r1.4 ChangeLog
--- hal/calmrisc16/arch/current/ChangeLog	8 Dec 2003 15:34:55 -0000	1.4
+++ hal/calmrisc16/arch/current/ChangeLog	22 Apr 2004 14:56:56 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_calm16.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-12-08  Gary Thomas  <gary@mlbassoc.com>
 
 	* src/hal_misc.c: Only declare __mem_fault_handler if GDB stubs
 	are included (and it will be used).
 
Index: hal/calmrisc16/arch/current/cdl/hal_calm16.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/calmrisc16/arch/current/cdl/hal_calm16.cdl,v
retrieving revision 1.2
diff -u -5 -p -r1.2 hal_calm16.cdl
--- hal/calmrisc16/arch/current/cdl/hal_calm16.cdl	23 May 2002 23:02:35 -0000	1.2
+++ hal/calmrisc16/arch/current/cdl/hal_calm16.cdl	22 Apr 2004 14:56:56 -0000
@@ -70,11 +70,11 @@ cdl_package CYGPKG_HAL_CALM16 {
 
     make {
         <PREFIX>/lib/vectors.o : <PACKAGE>/src/vectors.S
         $(CC) -Wp,-MD,vectors.tmp $(INCLUDE_PATH) $(CFLAGS) -c -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 vectors.tmp >> $(notdir $@).deps
+        @tail -n +2 vectors.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm vectors.tmp
     }
 
     cdl_option CYGHWR_HAL_CALM16_CPU_FREQ {
Index: hal/calmrisc16/core/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/calmrisc16/core/current/ChangeLog,v
retrieving revision 1.4
diff -u -5 -p -r1.4 ChangeLog
--- hal/calmrisc16/core/current/ChangeLog	10 Apr 2003 18:07:52 -0000	1.4
+++ hal/calmrisc16/core/current/ChangeLog	22 Apr 2004 14:56:56 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_calm16_core.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-04-10  Nick Garnett  <nickg@balti.calivar.com>
 
 	* src/calm16_core.ld: 
 	Added libsupc++.a to GROUP() directive for GCC versions later than
 	3.0.
Index: hal/calmrisc16/core/current/cdl/hal_calm16_core.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/calmrisc16/core/current/cdl/hal_calm16_core.cdl,v
retrieving revision 1.2
diff -u -5 -p -r1.2 hal_calm16_core.cdl
--- hal/calmrisc16/core/current/cdl/hal_calm16_core.cdl	23 May 2002 23:02:39 -0000	1.2
+++ hal/calmrisc16/core/current/cdl/hal_calm16_core.cdl	22 Apr 2004 14:56:56 -0000
@@ -69,11 +69,11 @@ cdl_package CYGPKG_HAL_CALM16_CORE {
 
     make {
         <PREFIX>/lib/target.ld: <PACKAGE>/src/calm16_core.ld
         $(CC) -E -P -Wp,-MD,target.tmp -DEXTRAS=1 -xc $(INCLUDE_PATH) $(CFLAGS) -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 target.tmp >> $(notdir $@).deps
+        @tail -n +2 target.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm target.tmp
     }
 
     cdl_option CYGBLD_LINKER_SCRIPT {
Index: hal/calmrisc32/arch/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/calmrisc32/arch/current/ChangeLog,v
retrieving revision 1.4
diff -u -5 -p -r1.4 ChangeLog
--- hal/calmrisc32/arch/current/ChangeLog	8 Dec 2003 15:34:56 -0000	1.4
+++ hal/calmrisc32/arch/current/ChangeLog	22 Apr 2004 14:56:56 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_calm32.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-12-08  Gary Thomas  <gary@mlbassoc.com>
 
 	* src/hal_misc.c: Only declare __mem_fault_handler if GDB stubs
 	are included (and it will be used).
 
Index: hal/calmrisc32/arch/current/cdl/hal_calm32.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/calmrisc32/arch/current/cdl/hal_calm32.cdl,v
retrieving revision 1.2
diff -u -5 -p -r1.2 hal_calm32.cdl
--- hal/calmrisc32/arch/current/cdl/hal_calm32.cdl	23 May 2002 23:02:40 -0000	1.2
+++ hal/calmrisc32/arch/current/cdl/hal_calm32.cdl	22 Apr 2004 14:56:56 -0000
@@ -70,11 +70,11 @@ cdl_package CYGPKG_HAL_CALM32 {
 
     make {
         <PREFIX>/lib/vectors.o : <PACKAGE>/src/vectors.S
         $(CC) -Wp,-MD,vectors.tmp $(INCLUDE_PATH) $(CFLAGS) -c -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 vectors.tmp >> $(notdir $@).deps
+        @tail -n +2 vectors.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm vectors.tmp
     }
 
     cdl_option CYGHWR_HAL_CALM32_CPU_FREQ {
Index: hal/calmrisc32/core/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/calmrisc32/core/current/ChangeLog,v
retrieving revision 1.4
diff -u -5 -p -r1.4 ChangeLog
--- hal/calmrisc32/core/current/ChangeLog	10 Apr 2003 18:07:53 -0000	1.4
+++ hal/calmrisc32/core/current/ChangeLog	22 Apr 2004 14:56:56 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_calm32_core.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-04-10  Nick Garnett  <nickg@balti.calivar.com>
 
 	* src/calm32_core.ld: 
 	Added libsupc++.a to GROUP() directive for GCC versions later than
 	3.0.
Index: hal/calmrisc32/core/current/cdl/hal_calm32_core.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/calmrisc32/core/current/cdl/hal_calm32_core.cdl,v
retrieving revision 1.2
diff -u -5 -p -r1.2 hal_calm32_core.cdl
--- hal/calmrisc32/core/current/cdl/hal_calm32_core.cdl	23 May 2002 23:02:43 -0000	1.2
+++ hal/calmrisc32/core/current/cdl/hal_calm32_core.cdl	22 Apr 2004 14:56:56 -0000
@@ -69,11 +69,11 @@ cdl_package CYGPKG_HAL_CALM32_CORE {
 
     make {
         <PREFIX>/lib/target.ld: <PACKAGE>/src/calm32_core.ld
         $(CC) -E -P -Wp,-MD,target.tmp -DEXTRAS=1 -xc $(INCLUDE_PATH) $(CFLAGS) -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 target.tmp >> $(notdir $@).deps
+        @tail -n +2 target.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm target.tmp
     }
 
     cdl_option CYGBLD_LINKER_SCRIPT {
Index: hal/common/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/common/current/ChangeLog,v
retrieving revision 1.102
diff -u -5 -p -r1.102 ChangeLog
--- hal/common/current/ChangeLog	23 Feb 2004 14:55:30 -0000	1.102
+++ hal/common/current/ChangeLog	22 Apr 2004 14:56:56 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2004-02-23  Jonathan Larmour  <jifl@eCosCentric.com>
 
 	* cdl/debugging.cdl (CYGDBG_HAL_DEBUG_GDB_INCLUDE_STUBS): Included
 	stubs should always mean saving full context both on interrupts
 	and context swaps, so make it explicit.
Index: hal/common/current/cdl/hal.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/common/current/cdl/hal.cdl,v
retrieving revision 1.20
diff -u -5 -p -r1.20 hal.cdl
--- hal/common/current/cdl/hal.cdl	24 Feb 2003 14:22:45 -0000	1.20
+++ hal/common/current/cdl/hal.cdl	22 Apr 2004 14:56:56 -0000
@@ -385,11 +385,11 @@ cdl_package CYGPKG_HAL {
                 <PREFIX>/bin/gdb_module.img : <PACKAGE>/src/stubrom/stubrom.c <PREFIX>/lib/extras.o <PREFIX>/lib/libtarget.a <PREFIX>/lib/target.ld <PREFIX>/lib/vectors.o
                 @sh -c "mkdir -p src/stubrom $(dir $@)"
                 $(CC) -c $(INCLUDE_PATH) -Wp,-MD,deps.tmp -I$(dir $<) $(CFLAGS) -o src/stubrom/gdb_module.o $<
                 @echo $@ ": \\" > $(notdir $@).deps
                 @echo $(wildcard $(PREFIX)/lib/*) " \\" >> $(notdir $@).deps
-                @tail +2 deps.tmp >> $(notdir $@).deps
+                @tail -n +2 deps.tmp >> $(notdir $@).deps
                 @echo >> $(notdir $@).deps
                 @rm deps.tmp
                 $(CC) $(LDFLAGS) -L$(PREFIX)/lib -Ttarget.ld -o $@ src/stubrom/gdb_module.o
             }
         }
Index: hal/frv/arch/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/frv/arch/current/ChangeLog,v
retrieving revision 1.4
diff -u -5 -p -r1.4 ChangeLog
--- hal/frv/arch/current/ChangeLog	10 Apr 2003 18:07:53 -0000	1.4
+++ hal/frv/arch/current/ChangeLog	22 Apr 2004 14:56:56 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_frv.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-04-10  Nick Garnett  <nickg@balti.calivar.com>
 
 	* src/frv.ld:
 	Added .eh_frame to data section. This is a stopgap fix to allow
 	C++ programs that define exceptions to link and run. It does not
Index: hal/frv/arch/current/cdl/hal_frv.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/frv/arch/current/cdl/hal_frv.cdl,v
retrieving revision 1.2
diff -u -5 -p -r1.2 hal_frv.cdl
--- hal/frv/arch/current/cdl/hal_frv.cdl	23 May 2002 23:02:51 -0000	1.2
+++ hal/frv/arch/current/cdl/hal_frv.cdl	22 Apr 2004 14:56:56 -0000
@@ -66,29 +66,29 @@ cdl_package CYGPKG_HAL_FRV {
     make -priority 1 {
         frv.inc : <PACKAGE>/src/hal_mk_defs.c
         $(CC) $(CFLAGS) $(INCLUDE_PATH) -Wp,-MD,frv.tmp -o hal_mk_defs.tmp -S $<
         fgrep .equ hal_mk_defs.tmp | sed s/#// | sed s/\\.equ/#define/ > $@
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 frv.tmp >> $(notdir $@).deps
+        @tail -n +2 frv.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm frv.tmp hal_mk_defs.tmp
     }
 
     make {
         <PREFIX>/lib/vectors.o : <PACKAGE>/src/vectors.S
         $(CC) -Wp,-MD,vectors.tmp $(INCLUDE_PATH) $(CFLAGS) -c -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 vectors.tmp >> $(notdir $@).deps
+        @tail -n +2 vectors.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm vectors.tmp
     }
 
     make {
         <PREFIX>/lib/target.ld: <PACKAGE>/src/frv.ld
         $(CC) -E -P -Wp,-MD,target.tmp -DEXTRAS=1 -xc $(INCLUDE_PATH) $(CFLAGS) -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 target.tmp >> $(notdir $@).deps
+        @tail -n +2 target.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm target.tmp
     }
 
     cdl_interface CYGINT_HAL_FRV_ARCH_FR400 {
Index: hal/frv/frv400/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/frv/frv400/current/ChangeLog,v
retrieving revision 1.6
diff -u -5 -p -r1.6 ChangeLog
--- hal/frv/frv400/current/ChangeLog	5 Dec 2003 09:56:58 -0000	1.6
+++ hal/frv/frv400/current/ChangeLog	22 Apr 2004 14:56:56 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_frv_frv400.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-12-05  Andrew Lunn  <andrew.lunn@ascom.ch>
 
 	* include/hal_diag.h: hal_delay_us() is a C function.
 
 2003-09-21  Gary Thomas  <gary@mlbassoc.com>
Index: hal/frv/frv400/current/cdl/hal_frv_frv400.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/frv/frv400/current/cdl/hal_frv_frv400.cdl,v
retrieving revision 1.3
diff -u -5 -p -r1.3 hal_frv_frv400.cdl
--- hal/frv/frv400/current/cdl/hal_frv_frv400.cdl	24 Jul 2003 20:24:01 -0000	1.3
+++ hal/frv/frv400/current/cdl/hal_frv_frv400.cdl	22 Apr 2004 14:56:56 -0000
@@ -256,11 +256,11 @@ cdl_package CYGPKG_HAL_FRV_FRV400 {
                 $(OBJCOPY) -O binary src/gdb_module_ncs.img src/gdb_module_ncs.bin
                 @rm src/gdb_module_ncs.tmp src/gdb_module_ncs.img
                 # Prepare dependency file
                 @echo $@ ": \\" > $(notdir $@).deps
                 @echo $(wildcard $(PREFIX)/lib/*) " \\" >> $(notdir $@).deps
-                @tail +2 deps.tmp >> $(notdir $@).deps
+                @tail -n +2 deps.tmp >> $(notdir $@).deps
                 @echo >> $(notdir $@).deps
                 @rm deps.tmp
                 # Then build version with checksum from previously built image.
                 $(CC) -c -DCHECKSUM=`$(dir $<)flash_cksum.tcl src/gdb_module_ncs.bin` $(INCLUDE_PATH) -I$(dir $<) $(CFLAGS) -o src/gdb_module.o $<
                 $(CC) $(LDFLAGS) -L$(PREFIX)/lib -Ttarget.ld -o src/gdb_module.tmp src/gdb_module.o
Index: hal/h8300/arch/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/h8300/arch/current/ChangeLog,v
retrieving revision 1.5
diff -u -5 -p -r1.5 ChangeLog
--- hal/h8300/arch/current/ChangeLog	6 Apr 2004 20:32:49 -0000	1.5
+++ hal/h8300/arch/current/ChangeLog	22 Apr 2004 14:56:56 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_h8300.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2004-03-18  Yoshinori Sato <ysato@users.sourceforge.jp>
 
 	* src/context.S
 	fix broken ccr from context save.
 	* src/redboot_linux_exec.c
Index: hal/h8300/arch/current/cdl/hal_h8300.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/h8300/arch/current/cdl/hal_h8300.cdl,v
retrieving revision 1.4
diff -u -5 -p -r1.4 hal_h8300.cdl
--- hal/h8300/arch/current/cdl/hal_h8300.cdl	6 Apr 2004 20:32:53 -0000	1.4
+++ hal/h8300/arch/current/cdl/hal_h8300.cdl	22 Apr 2004 14:56:56 -0000
@@ -80,11 +80,11 @@ cdl_package CYGPKG_HAL_H8300 {
 
     make {
         <PREFIX>/lib/vectors.o : <PACKAGE>/src/vectors.S
         $(CC) -Wp,-MD,vectors.tmp $(INCLUDE_PATH) $(CFLAGS) -c -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 vectors.tmp >> $(notdir $@).deps
+        @tail -n +2 vectors.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm vectors.tmp
     }
     cdl_component CYGPKG_REDBOOT_H8300_OPTIONS {
         display       "Redboot for H8300 options"
Index: hal/h8300/h8300h/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/h8300/h8300h/current/ChangeLog,v
retrieving revision 1.6
diff -u -5 -p -r1.6 ChangeLog
--- hal/h8300/h8300h/current/ChangeLog	6 Apr 2004 20:36:45 -0000	1.6
+++ hal/h8300/h8300h/current/ChangeLog	22 Apr 2004 14:56:56 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_h8300_h8300h.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-03-17  Yoshinori Sato  <ysato@users.sourceforge.jp>
 
 	* src/h8300h_stub.c
 	Bcc d:16 trace miss fix.
 	cleanup code.
Index: hal/h8300/h8300h/current/cdl/hal_h8300_h8300h.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/h8300/h8300h/current/cdl/hal_h8300_h8300h.cdl,v
retrieving revision 1.3
diff -u -5 -p -r1.3 hal_h8300_h8300h.cdl
--- hal/h8300/h8300h/current/cdl/hal_h8300_h8300h.cdl	6 Oct 2003 17:28:56 -0000	1.3
+++ hal/h8300/h8300h/current/cdl/hal_h8300_h8300h.cdl	22 Apr 2004 14:56:56 -0000
@@ -70,11 +70,11 @@ cdl_package CYGPKG_HAL_H8300_H8300H {
 
     make {
         <PREFIX>/lib/target.ld: <PACKAGE>/src/h8300_h8300h.ld
         $(CC) -E -P -Wp,-MD,target.tmp -DEXTRAS=1 -xc $(INCLUDE_PATH) $(CFLAGS) -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 target.tmp >> $(notdir $@).deps
+        @tail -n +2 target.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm target.tmp
     }
 
     cdl_option CYGBLD_LINKER_SCRIPT {
Index: hal/h8300/h8s/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/h8300/h8s/current/ChangeLog,v
retrieving revision 1.2
diff -u -5 -p -r1.2 ChangeLog
--- hal/h8300/h8s/current/ChangeLog	6 Apr 2004 20:39:25 -0000	1.2
+++ hal/h8300/h8s/current/ChangeLog	22 Apr 2004 14:56:56 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_h8300_h8s.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2004-03-18  Yoshinori Sato  <ysato@users.sourceforge.jp>
 
 	* include/variant.inc
 	fix exr handling.
 
Index: hal/h8300/h8s/current/cdl/hal_h8300_h8s.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/h8300/h8s/current/cdl/hal_h8300_h8s.cdl,v
retrieving revision 1.1
diff -u -5 -p -r1.1 hal_h8300_h8s.cdl
--- hal/h8300/h8s/current/cdl/hal_h8300_h8s.cdl	6 Oct 2003 17:28:58 -0000	1.1
+++ hal/h8300/h8s/current/cdl/hal_h8300_h8s.cdl	22 Apr 2004 14:56:56 -0000
@@ -70,11 +70,11 @@ cdl_package CYGPKG_HAL_H8300_H8S {
 
     make {
         <PREFIX>/lib/target.ld: <PACKAGE>/src/h8300_h8s.ld
         $(CC) -E -P -Wp,-MD,target.tmp -DEXTRAS=1 -xc $(INCLUDE_PATH) $(CFLAGS) -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 target.tmp >> $(notdir $@).deps
+        @tail -n +2 target.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm target.tmp
     }
 
     cdl_option CYGBLD_LINKER_SCRIPT {
Index: hal/i386/arch/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/i386/arch/current/ChangeLog,v
retrieving revision 1.40
diff -u -5 -p -r1.40 ChangeLog
--- hal/i386/arch/current/ChangeLog	8 Dec 2003 15:34:56 -0000	1.40
+++ hal/i386/arch/current/ChangeLog	22 Apr 2004 14:56:56 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_i386.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-12-08  Gary Thomas  <gary@mlbassoc.com>
 
 	* src/hal_misc.c: Only declare __mem_fault_handler if GDB stubs
 	are included (and it will be used).
 
Index: hal/i386/arch/current/cdl/hal_i386.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/i386/arch/current/cdl/hal_i386.cdl,v
retrieving revision 1.10
diff -u -5 -p -r1.10 hal_i386.cdl
--- hal/i386/arch/current/cdl/hal_i386.cdl	23 May 2002 23:03:02 -0000	1.10
+++ hal/i386/arch/current/cdl/hal_i386.cdl	22 Apr 2004 14:56:56 -0000
@@ -65,20 +65,20 @@ cdl_package CYGPKG_HAL_I386 {
 
     make {
         <PREFIX>/lib/vectors.o : <PACKAGE>/src/vectors.S
         $(CC) -Wp,-MD,vectors.tmp $(INCLUDE_PATH) $(CFLAGS) -c -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 vectors.tmp >> $(notdir $@).deps
+        @tail -n +2 vectors.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm vectors.tmp
     }
 
     make {
         <PREFIX>/lib/target.ld: <PACKAGE>/src/i386.ld
         $(CC) -E -P -Wp,-MD,target.tmp -DEXTRAS=1 -xc $(INCLUDE_PATH) $(CFLAGS) -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 target.tmp >> $(notdir $@).deps
+        @tail -n +2 target.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm target.tmp
     }
 
     cdl_component CYGPKG_HAL_SMP_SUPPORT {
Index: hal/i386/pc/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/i386/pc/current/ChangeLog,v
retrieving revision 1.21
diff -u -5 -p -r1.21 ChangeLog
--- hal/i386/pc/current/ChangeLog	23 Jul 2003 17:57:57 -0000	1.21
+++ hal/i386/pc/current/ChangeLog	22 Apr 2004 14:56:56 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_i386_pc.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-07-23  Nick Garnett  <nickg@balti.calivar.com>
 
 	* include/plf_intr.h: Added extern definition for hal_pc_reset().
 
 2003-04-10  Nick Garnett  <nickg@balti.calivar.com>
Index: hal/i386/pc/current/cdl/hal_i386_pc.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/i386/pc/current/cdl/hal_i386_pc.cdl,v
retrieving revision 1.10
diff -u -5 -p -r1.10 hal_i386_pc.cdl
--- hal/i386/pc/current/cdl/hal_i386_pc.cdl	1 Dec 2002 15:48:34 -0000	1.10
+++ hal/i386/pc/current/cdl/hal_i386_pc.cdl	22 Apr 2004 14:56:56 -0000
@@ -118,11 +118,11 @@ cdl_package CYGPKG_HAL_I386_PC {
 	make {
 	    <PREFIX>/bin/romboot.elf : <PACKAGE>/src/romboot.S
 	    @sh -c "mkdir -p $(dir $@)"
 	    $(CC) -Wp,-MD,romboot.tmp $(INCLUDE_PATH) -nostdlib -Wl,-static -T$(PREFIX)/lib/romboot.ld -o $@ $<
 	    @echo $@ ": \\" > $(notdir $@).deps
-	    @tail +2 romboot.tmp >> $(notdir $@).deps
+	    @tail -n +2 romboot.tmp >> $(notdir $@).deps
 	    @echo >> $(notdir $@).deps
 	    @rm romboot.tmp
 	}
     }
 
Index: hal/m68k/arch/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/m68k/arch/current/ChangeLog,v
retrieving revision 1.1
diff -u -5 -p -r1.1 ChangeLog
--- hal/m68k/arch/current/ChangeLog	22 Apr 2004 12:55:09 -0000	1.1
+++ hal/m68k/arch/current/ChangeLog	22 Apr 2004 14:56:56 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_m68k.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 //===========================================================================
 //####ECOSGPLCOPYRIGHTBEGIN####
 // -------------------------------------------
 // This file is part of eCos, the Embedded Configurable Operating System.
 // Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
Index: hal/m68k/arch/current/cdl/hal_m68k.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/m68k/arch/current/cdl/hal_m68k.cdl,v
retrieving revision 1.1
diff -u -5 -p -r1.1 hal_m68k.cdl
--- hal/m68k/arch/current/cdl/hal_m68k.cdl	29 May 2002 18:28:15 -0000	1.1
+++ hal/m68k/arch/current/cdl/hal_m68k.cdl	22 Apr 2004 14:56:56 -0000
@@ -60,11 +60,11 @@ cdl_package CYGPKG_HAL_M68K {
 
     make {
         <PREFIX>/lib/target.ld: <PACKAGE>/src/m68k.ld
         $(CC) -E -P -Wp,-MD,target.tmp -DEXTRAS=1 -xc $(INCLUDE_PATH) $(CFLAGS) -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 target.tmp >> $(notdir $@).deps
+        @tail -n +2 target.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm target.tmp
     }
 
     cdl_option CYGBLD_LINKER_SCRIPT {
Index: hal/m68k/mcf52xx/var/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/m68k/mcf52xx/var/current/ChangeLog,v
retrieving revision 1.1
diff -u -5 -p -r1.1 ChangeLog
--- hal/m68k/mcf52xx/var/current/ChangeLog	22 Apr 2004 12:55:09 -0000	1.1
+++ hal/m68k/mcf52xx/var/current/ChangeLog	22 Apr 2004 14:56:56 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_m68k_mcf52xx.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 //===========================================================================
 //####ECOSGPLCOPYRIGHTBEGIN####
 // -------------------------------------------
 // This file is part of eCos, the Embedded Configurable Operating System.
 // Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
Index: hal/m68k/mcf52xx/var/current/cdl/hal_m68k_mcf52xx.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/m68k/mcf52xx/var/current/cdl/hal_m68k_mcf52xx.cdl,v
retrieving revision 1.1
diff -u -5 -p -r1.1 hal_m68k_mcf52xx.cdl
--- hal/m68k/mcf52xx/var/current/cdl/hal_m68k_mcf52xx.cdl	29 May 2002 18:28:16 -0000	1.1
+++ hal/m68k/mcf52xx/var/current/cdl/hal_m68k_mcf52xx.cdl	22 Apr 2004 14:56:56 -0000
@@ -59,11 +59,11 @@ cdl_package CYGPKG_HAL_M68K_MCF52xx {
 
     make {
         <PREFIX>/lib/vectors.o : <PACKAGE>/src/vectors.S
         $(CC) -Wp,-MD,vectors.tmp $(INCLUDE_PATH) $(CFLAGS) -c -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 vectors.tmp >> $(notdir $@).deps
+        @tail -n +2 vectors.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm vectors.tmp
     }
 
 }
Index: hal/mips/arch/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/mips/arch/current/ChangeLog,v
retrieving revision 1.71
diff -u -5 -p -r1.71 ChangeLog
--- hal/mips/arch/current/ChangeLog	6 Aug 2003 17:36:29 -0000	1.71
+++ hal/mips/arch/current/ChangeLog	22 Apr 2004 14:56:57 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_mips.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-08-06  Andy Dyer <adyer@righthandtech.com>
 
 	* include/arch.inc: Changed mask for cause register interrupt bits
 	to 0x3f from 0x7f. The extra bit was wrong, but in all current
 	implementations, benign.
Index: hal/mips/arch/current/cdl/hal_mips.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/mips/arch/current/cdl/hal_mips.cdl,v
retrieving revision 1.11
diff -u -5 -p -r1.11 hal_mips.cdl
--- hal/mips/arch/current/cdl/hal_mips.cdl	6 Aug 2002 14:34:05 -0000	1.11
+++ hal/mips/arch/current/cdl/hal_mips.cdl	22 Apr 2004 14:56:56 -0000
@@ -71,11 +71,11 @@ cdl_package CYGPKG_HAL_MIPS {
 
     make {
         <PREFIX>/lib/vectors.o : <PACKAGE>/src/vectors.S
         $(CC) -Wp,-MD,vectors.tmp $(INCLUDE_PATH) $(CFLAGS) -c -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 vectors.tmp >> $(notdir $@).deps
+        @tail -n +2 vectors.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm vectors.tmp
     }
 
     define_proc {
Index: hal/mips/idt32334/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/mips/idt32334/current/ChangeLog,v
retrieving revision 1.4
diff -u -5 -p -r1.4 ChangeLog
--- hal/mips/idt32334/current/ChangeLog	29 Apr 2003 02:33:05 -0000	1.4
+++ hal/mips/idt32334/current/ChangeLog	22 Apr 2004 14:56:57 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_mips_idt32334.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-04-29  Tim Michals  <t.michals@attbi.com>
 
 	* include/variant.inc (hal_intc_translation_table): Updated.
 	* src/var_intr.c (hal_extended_isr): fix loop bug.
 	(cyg_hal_interrupt_acknowledge):  Handle interrupts for serial
Index: hal/mips/idt32334/current/cdl/hal_mips_idt32334.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/mips/idt32334/current/cdl/hal_mips_idt32334.cdl,v
retrieving revision 1.1
diff -u -5 -p -r1.1 hal_mips_idt32334.cdl
--- hal/mips/idt32334/current/cdl/hal_mips_idt32334.cdl	14 Feb 2003 01:44:02 -0000	1.1
+++ hal/mips/idt32334/current/cdl/hal_mips_idt32334.cdl	22 Apr 2004 14:56:57 -0000
@@ -91,11 +91,11 @@ cdl_package CYGPKG_HAL_MIPS_IDT32334 {
 
     make {
         <PREFIX>/lib/target.ld: <PACKAGE>/src/mips_idt32334.ld
         $(CC) -E -P -Wp,-MD,target.tmp -DEXTRAS=1 -xc $(INCLUDE_PATH) $(CFLAGS) -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 target.tmp >> $(notdir $@).deps
+        @tail -n +2 target.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm target.tmp
     }
 
     cdl_option CYGBLD_LINKER_SCRIPT {
Index: hal/mips/malta/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/mips/malta/current/ChangeLog,v
retrieving revision 1.7
diff -u -5 -p -r1.7 ChangeLog
--- hal/mips/malta/current/ChangeLog	14 Jan 2004 15:38:09 -0000	1.7
+++ hal/mips/malta/current/ChangeLog	22 Apr 2004 14:56:57 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_mips_malta.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2004-01-14  Nick Garnett  <nickg@calivar.com>
 
 	* src/plf_misc.c (hal_platform_init): Changed capitalization of
 	"eCos" displayed on ASCII display.
 	(cyg_hal_plf_pci_init): Added call to cyg_pci_init() before call
Index: hal/mips/malta/current/cdl/hal_mips_malta.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/mips/malta/current/cdl/hal_mips_malta.cdl,v
retrieving revision 1.3
diff -u -5 -p -r1.3 hal_mips_malta.cdl
--- hal/mips/malta/current/cdl/hal_mips_malta.cdl	24 Jul 2003 20:24:03 -0000	1.3
+++ hal/mips/malta/current/cdl/hal_mips_malta.cdl	22 Apr 2004 14:56:57 -0000
@@ -124,11 +124,11 @@ cdl_package CYGPKG_HAL_MIPS_MALTA {
     make -priority 1 {
         <PREFIX>/include/cyg/hal/plf_defs.inc : <PACKAGE>/src/plf_mk_defs.c
         $(CC) $(CFLAGS) $(INCLUDE_PATH) -Wp,-MD,plf_defs.tmp -o plf_mk_defs.tmp -S $<
         fgrep .equ plf_mk_defs.tmp | sed s/#// > $@
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 plf_defs.tmp >> $(notdir $@).deps
+        @tail -n +2 plf_defs.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm plf_defs.tmp plf_mk_defs.tmp
     }
 
     cdl_option CYGHWR_HAL_MIPS_MALTA_CPU_CLOCK {
Index: hal/mips/mips32/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/mips/mips32/current/ChangeLog,v
retrieving revision 1.9
diff -u -5 -p -r1.9 ChangeLog
--- hal/mips/mips32/current/ChangeLog	10 Apr 2003 18:07:54 -0000	1.9
+++ hal/mips/mips32/current/ChangeLog	22 Apr 2004 14:56:57 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_mips_mips32.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-04-10  Nick Garnett  <nickg@balti.calivar.com>
 
 	* src/mips_mips32.ld:
 	Added libsupc++.a to GROUP() directive for GCC versions later than
 	3.0.	
Index: hal/mips/mips32/current/cdl/hal_mips_mips32.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/mips/mips32/current/cdl/hal_mips_mips32.cdl,v
retrieving revision 1.6
diff -u -5 -p -r1.6 hal_mips_mips32.cdl
--- hal/mips/mips32/current/cdl/hal_mips_mips32.cdl	27 Feb 2003 18:31:14 -0000	1.6
+++ hal/mips/mips32/current/cdl/hal_mips_mips32.cdl	22 Apr 2004 14:56:57 -0000
@@ -111,11 +111,11 @@ cdl_package CYGPKG_HAL_MIPS_MIPS32 {
 
     make {
         <PREFIX>/lib/target.ld: <PACKAGE>/src/mips_mips32.ld
         $(CC) -E -P -Wp,-MD,target.tmp -DEXTRAS=1 -xc $(INCLUDE_PATH) $(CFLAGS) -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 target.tmp >> $(notdir $@).deps
+        @tail -n +2 target.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm target.tmp
     }
 
     cdl_option CYGBLD_LINKER_SCRIPT {
Index: hal/mips/mips64/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/mips/mips64/current/ChangeLog,v
retrieving revision 1.8
diff -u -5 -p -r1.8 ChangeLog
--- hal/mips/mips64/current/ChangeLog	10 Apr 2003 18:07:54 -0000	1.8
+++ hal/mips/mips64/current/ChangeLog	22 Apr 2004 14:56:57 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_mips_mips64.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-04-10  Nick Garnett  <nickg@balti.calivar.com>
 
 	* src/mips_mips64.ld: 
 	Added libsupc++.a to GROUP() directive for GCC versions later than
 	3.0.
Index: hal/mips/mips64/current/cdl/hal_mips_mips64.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/mips/mips64/current/cdl/hal_mips_mips64.cdl,v
retrieving revision 1.4
diff -u -5 -p -r1.4 hal_mips_mips64.cdl
--- hal/mips/mips64/current/cdl/hal_mips_mips64.cdl	23 May 2002 23:03:34 -0000	1.4
+++ hal/mips/mips64/current/cdl/hal_mips_mips64.cdl	22 Apr 2004 14:56:57 -0000
@@ -104,11 +104,11 @@ cdl_package CYGPKG_HAL_MIPS_MIPS64 {
 
     make {
         <PREFIX>/lib/target.ld: <PACKAGE>/src/mips_mips64.ld
         $(CC) -E -P -Wp,-MD,target.tmp -DEXTRAS=1 -xc $(INCLUDE_PATH) $(CFLAGS) -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 target.tmp >> $(notdir $@).deps
+        @tail -n +2 target.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm target.tmp
     }
 
     cdl_option CYGBLD_LINKER_SCRIPT {
Index: hal/mips/ref4955/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/mips/ref4955/current/ChangeLog,v
retrieving revision 1.8
diff -u -5 -p -r1.8 ChangeLog
--- hal/mips/ref4955/current/ChangeLog	24 Jul 2003 20:24:03 -0000	1.8
+++ hal/mips/ref4955/current/ChangeLog	22 Apr 2004 14:56:57 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_mips_tx49_ref4955.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-07-18  Nick Garnett  <nickg@balti.calivar.com>
 
 	* cdl/hal_mips_tx49_ref4955.cdl:
         Changed values for CYGNUM_HAL_RTC_NUMERATOR,
         CYGNUM_HAL_RTC_DENOMINATOR and CYGNUM_HAL_RTC_PERIOD to
Index: hal/mips/ref4955/current/cdl/hal_mips_tx49_ref4955.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/mips/ref4955/current/cdl/hal_mips_tx49_ref4955.cdl,v
retrieving revision 1.6
diff -u -5 -p -r1.6 hal_mips_tx49_ref4955.cdl
--- hal/mips/ref4955/current/cdl/hal_mips_tx49_ref4955.cdl	24 Jul 2003 20:24:03 -0000	1.6
+++ hal/mips/ref4955/current/cdl/hal_mips_tx49_ref4955.cdl	22 Apr 2004 14:56:57 -0000
@@ -145,11 +145,11 @@ cdl_package CYGPKG_HAL_MIPS_TX49_REF4955
     make -priority 1 {
         <PREFIX>/include/cyg/hal/plf_defs.inc : <PACKAGE>/src/plf_mk_defs.c
         $(CC) $(CFLAGS) $(INCLUDE_PATH) -Wp,-MD,plf_defs.tmp -o plf_mk_defs.tmp -S $<
         fgrep .equ plf_mk_defs.tmp | sed s/#// > $@
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 plf_defs.tmp >> $(notdir $@).deps
+        @tail -n +2 plf_defs.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm plf_defs.tmp plf_mk_defs.tmp
     }
 
     # Real-time clock/counter specifics
Index: hal/mips/rm7000/ocelot/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/mips/rm7000/ocelot/current/ChangeLog,v
retrieving revision 1.9
diff -u -5 -p -r1.9 ChangeLog
--- hal/mips/rm7000/ocelot/current/ChangeLog	24 Jul 2003 20:24:04 -0000	1.9
+++ hal/mips/rm7000/ocelot/current/ChangeLog	22 Apr 2004 14:56:57 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_mips_rm7000_ocelot.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-07-18  Nick Garnett  <nickg@balti.calivar.com>
 
 	* cdl/hal_mips_rm7000_ocelot.cdl:
         Changed values for CYGNUM_HAL_RTC_NUMERATOR,
         CYGNUM_HAL_RTC_DENOMINATOR and CYGNUM_HAL_RTC_PERIOD to
Index: hal/mips/rm7000/ocelot/current/cdl/hal_mips_rm7000_ocelot.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/mips/rm7000/ocelot/current/cdl/hal_mips_rm7000_ocelot.cdl,v
retrieving revision 1.6
diff -u -5 -p -r1.6 hal_mips_rm7000_ocelot.cdl
--- hal/mips/rm7000/ocelot/current/cdl/hal_mips_rm7000_ocelot.cdl	24 Jul 2003 20:24:04 -0000	1.6
+++ hal/mips/rm7000/ocelot/current/cdl/hal_mips_rm7000_ocelot.cdl	22 Apr 2004 14:56:57 -0000
@@ -196,11 +196,11 @@ cdl_package CYGPKG_HAL_MIPS_RM7000_OCELO
     make -priority 1 {
         <PREFIX>/include/cyg/hal/plf_defs.inc : <PACKAGE>/src/plf_mk_defs.c
         $(CC) $(CFLAGS) $(INCLUDE_PATH) -Wp,-MD,plf_defs.tmp -o plf_mk_defs.tmp -S $<
         fgrep .equ plf_mk_defs.tmp | sed s/#// > $@
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 plf_defs.tmp >> $(notdir $@).deps
+        @tail -n +2 plf_defs.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm plf_defs.tmp plf_mk_defs.tmp
     }
 
     cdl_option CYGHWR_HAL_MIPS_RM7000_CPU_CLOCK {
Index: hal/mips/rm7000/var/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/mips/rm7000/var/current/ChangeLog,v
retrieving revision 1.9
diff -u -5 -p -r1.9 ChangeLog
--- hal/mips/rm7000/var/current/ChangeLog	10 Apr 2003 18:07:55 -0000	1.9
+++ hal/mips/rm7000/var/current/ChangeLog	22 Apr 2004 14:56:57 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_mips_rm7000.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-04-10  Nick Garnett  <nickg@balti.calivar.com>
 
 	* src/mips_rm7000.ld: 
 	Added libsupc++.a to GROUP() directive for GCC versions later than
 	3.0.
Index: hal/mips/rm7000/var/current/cdl/hal_mips_rm7000.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/mips/rm7000/var/current/cdl/hal_mips_rm7000.cdl,v
retrieving revision 1.4
diff -u -5 -p -r1.4 hal_mips_rm7000.cdl
--- hal/mips/rm7000/var/current/cdl/hal_mips_rm7000.cdl	23 May 2002 23:03:39 -0000	1.4
+++ hal/mips/rm7000/var/current/cdl/hal_mips_rm7000.cdl	22 Apr 2004 14:56:57 -0000
@@ -138,20 +138,20 @@ cdl_package CYGPKG_HAL_MIPS_RM7000 {
     make -priority 1 {
         <PREFIX>/include/cyg/hal/var_defs.inc : <PACKAGE>/src/var_mk_defs.c
         $(CC) $(CFLAGS) $(INCLUDE_PATH) -Wp,-MD,var_defs.tmp -o var_mk_defs.tmp -S $<
         fgrep .equ var_mk_defs.tmp | sed s/#// > $@
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 var_defs.tmp >> $(notdir $@).deps
+        @tail -n +2 var_defs.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm var_defs.tmp var_mk_defs.tmp
     }
 
     make {
         <PREFIX>/lib/target.ld: <PACKAGE>/src/mips_rm7000.ld
         $(CC) -E -P -Wp,-MD,target.tmp -DEXTRAS=1 -xc $(INCLUDE_PATH) $(CFLAGS) -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 target.tmp >> $(notdir $@).deps
+        @tail -n +2 target.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm target.tmp
     }
 
     cdl_option CYGBLD_LINKER_SCRIPT {
Index: hal/mips/tx39/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/mips/tx39/current/ChangeLog,v
retrieving revision 1.19
diff -u -5 -p -r1.19 ChangeLog
--- hal/mips/tx39/current/ChangeLog	10 Apr 2003 18:07:55 -0000	1.19
+++ hal/mips/tx39/current/ChangeLog	22 Apr 2004 14:56:57 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_mips_tx39.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-04-10  Nick Garnett  <nickg@balti.calivar.com>
 
 	* src/mips_tx39.ld: 
 	Added libsupc++.a to GROUP() directive for GCC versions later than
 	3.0.
Index: hal/mips/tx39/current/cdl/hal_mips_tx39.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/mips/tx39/current/cdl/hal_mips_tx39.cdl,v
retrieving revision 1.3
diff -u -5 -p -r1.3 hal_mips_tx39.cdl
--- hal/mips/tx39/current/cdl/hal_mips_tx39.cdl	23 May 2002 23:03:43 -0000	1.3
+++ hal/mips/tx39/current/cdl/hal_mips_tx39.cdl	22 Apr 2004 14:56:57 -0000
@@ -112,11 +112,11 @@ cdl_package CYGPKG_HAL_MIPS_TX39 {
 
     make {
         <PREFIX>/lib/target.ld: <PACKAGE>/src/mips_tx39.ld
         $(CC) -E -P -Wp,-MD,target.tmp -DEXTRAS=1 -xc $(INCLUDE_PATH) $(CFLAGS) -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 target.tmp >> $(notdir $@).deps
+        @tail -n +2 target.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm target.tmp
     }
 
     cdl_option CYGBLD_LINKER_SCRIPT {
Index: hal/mips/tx49/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/mips/tx49/current/ChangeLog,v
retrieving revision 1.7
diff -u -5 -p -r1.7 ChangeLog
--- hal/mips/tx49/current/ChangeLog	6 Aug 2003 17:35:06 -0000	1.7
+++ hal/mips/tx49/current/ChangeLog	22 Apr 2004 14:56:57 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_mips_tx49.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-08-06  Andy Dyer <adyer@righthandtech.com>
 
 	* src/mips_tx49.ld:
 	Removed the "& defined(CYGPKG_IO)" which was causing libextras.a
 	not to get built for a redboot configuration.  The offsets for the
Index: hal/mips/tx49/current/cdl/hal_mips_tx49.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/mips/tx49/current/cdl/hal_mips_tx49.cdl,v
retrieving revision 1.3
diff -u -5 -p -r1.3 hal_mips_tx49.cdl
--- hal/mips/tx49/current/cdl/hal_mips_tx49.cdl	23 May 2002 23:03:45 -0000	1.3
+++ hal/mips/tx49/current/cdl/hal_mips_tx49.cdl	22 Apr 2004 14:56:57 -0000
@@ -135,11 +135,11 @@ cdl_package CYGPKG_HAL_MIPS_TX49 {
 
     make {
         <PREFIX>/lib/target.ld: <PACKAGE>/src/mips_tx49.ld
         $(CC) -E -P -Wp,-MD,target.tmp -DEXTRAS=1 -xc $(INCLUDE_PATH) $(CFLAGS) -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 target.tmp >> $(notdir $@).deps
+        @tail -n +2 target.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm target.tmp
     }
 
     cdl_option CYGBLD_LINKER_SCRIPT {
Index: hal/mips/upd985xx/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/mips/upd985xx/current/ChangeLog,v
retrieving revision 1.3
diff -u -5 -p -r1.3 ChangeLog
--- hal/mips/upd985xx/current/ChangeLog	10 Apr 2003 18:07:55 -0000	1.3
+++ hal/mips/upd985xx/current/ChangeLog	22 Apr 2004 14:56:57 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_mips_upd985xx.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-04-10  Nick Garnett  <nickg@balti.calivar.com>
 
 	* src/hal_mips_upd985xx.ld: 
 	Added libsupc++.a to GROUP() directive for GCC versions later than
 	3.0.
Index: hal/mips/upd985xx/current/cdl/hal_mips_upd985xx.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/mips/upd985xx/current/cdl/hal_mips_upd985xx.cdl,v
retrieving revision 1.2
diff -u -5 -p -r1.2 hal_mips_upd985xx.cdl
--- hal/mips/upd985xx/current/cdl/hal_mips_upd985xx.cdl	23 May 2002 23:03:48 -0000	1.2
+++ hal/mips/upd985xx/current/cdl/hal_mips_upd985xx.cdl	22 Apr 2004 14:56:57 -0000
@@ -211,11 +211,11 @@ cdl_package CYGPKG_HAL_MIPS_UPD985XX {
 
     make {
         <PREFIX>/lib/target.ld: <PACKAGE>/src/hal_mips_upd985xx.ld
         $(CC) -E -P -Wp,-MD,target.tmp -DEXTRAS=1 -xc $(INCLUDE_PATH) $(CFLAGS) -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 target.tmp >> $(notdir $@).deps
+        @tail -n +2 target.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm target.tmp
     }
 
     cdl_option CYGBLD_LINKER_SCRIPT {
Index: hal/mips/vr4300/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/mips/vr4300/current/ChangeLog,v
retrieving revision 1.11
diff -u -5 -p -r1.11 ChangeLog
--- hal/mips/vr4300/current/ChangeLog	10 Apr 2003 18:07:56 -0000	1.11
+++ hal/mips/vr4300/current/ChangeLog	22 Apr 2004 14:56:57 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_mips_vr4300.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-04-10  Nick Garnett  <nickg@balti.calivar.com>
 
 	* src/mips_vr4300.ld: 
 	Added libsupc++.a to GROUP() directive for GCC versions later than
 	3.0.
Index: hal/mips/vr4300/current/cdl/hal_mips_vr4300.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/mips/vr4300/current/cdl/hal_mips_vr4300.cdl,v
retrieving revision 1.5
diff -u -5 -p -r1.5 hal_mips_vr4300.cdl
--- hal/mips/vr4300/current/cdl/hal_mips_vr4300.cdl	23 May 2002 23:03:50 -0000	1.5
+++ hal/mips/vr4300/current/cdl/hal_mips_vr4300.cdl	22 Apr 2004 14:56:57 -0000
@@ -83,11 +83,11 @@ cdl_package CYGPKG_HAL_MIPS_VR4300 {
 
     make {
         <PREFIX>/lib/target.ld: <PACKAGE>/src/mips_vr4300.ld
         $(CC) -E -P -Wp,-MD,target.tmp -DEXTRAS=1 -xc $(INCLUDE_PATH) $(CFLAGS) -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 target.tmp >> $(notdir $@).deps
+        @tail -n +2 target.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm target.tmp
     }
 
     cdl_option CYGBLD_LINKER_SCRIPT {
Index: hal/mn10300/am31/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/mn10300/am31/current/ChangeLog,v
retrieving revision 1.12
diff -u -5 -p -r1.12 ChangeLog
--- hal/mn10300/am31/current/ChangeLog	10 Apr 2003 18:07:56 -0000	1.12
+++ hal/mn10300/am31/current/ChangeLog	22 Apr 2004 14:56:57 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_mn10300_am31.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-04-10  Nick Garnett  <nickg@balti.calivar.com>
 
 	* src/mn10300_am31.ld:
 	Added .eh_frame to data section. This is a stopgap fix to allow
 	C++ programs that define exceptions to link and run. It does not
Index: hal/mn10300/am31/current/cdl/hal_mn10300_am31.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/mn10300/am31/current/cdl/hal_mn10300_am31.cdl,v
retrieving revision 1.3
diff -u -5 -p -r1.3 hal_mn10300_am31.cdl
--- hal/mn10300/am31/current/cdl/hal_mn10300_am31.cdl	23 May 2002 23:03:57 -0000	1.3
+++ hal/mn10300/am31/current/cdl/hal_mn10300_am31.cdl	22 Apr 2004 14:56:57 -0000
@@ -70,11 +70,11 @@ cdl_package CYGPKG_HAL_MN10300_AM31 {
 
     make {
         <PREFIX>/lib/target.ld: <PACKAGE>/src/mn10300_am31.ld
         $(CC) -E -P -Wp,-MD,target.tmp -DEXTRAS=1 -xc $(INCLUDE_PATH) $(CFLAGS) -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 target.tmp >> $(notdir $@).deps
+        @tail -n +2 target.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm target.tmp
     }
 
     cdl_option CYGBLD_LINKER_SCRIPT {
Index: hal/mn10300/am33/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/mn10300/am33/current/ChangeLog,v
retrieving revision 1.15
diff -u -5 -p -r1.15 ChangeLog
--- hal/mn10300/am33/current/ChangeLog	5 Dec 2003 09:56:58 -0000	1.15
+++ hal/mn10300/am33/current/ChangeLog	22 Apr 2004 14:56:57 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_mn10300_am33.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-12-05  Andrew Lunn  <andrew.lunn@ascom.ch>
 
 	* include/var_intr.h:  hal_delay_us() is a C function.
 
 2003-07-18  Nick Garnett  <nickg@balti.calivar.com>
Index: hal/mn10300/am33/current/cdl/hal_mn10300_am33.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/mn10300/am33/current/cdl/hal_mn10300_am33.cdl,v
retrieving revision 1.9
diff -u -5 -p -r1.9 hal_mn10300_am33.cdl
--- hal/mn10300/am33/current/cdl/hal_mn10300_am33.cdl	24 Jul 2003 20:24:05 -0000	1.9
+++ hal/mn10300/am33/current/cdl/hal_mn10300_am33.cdl	22 Apr 2004 14:56:57 -0000
@@ -231,11 +231,11 @@ cdl_package CYGPKG_HAL_MN10300_AM33 {
 
     make {
         <PREFIX>/lib/target.ld: <PACKAGE>/src/mn10300_am33.ld
         $(CC) -E -P -Wp,-MD,target.tmp -DEXTRAS=1 -xc $(INCLUDE_PATH) $(CFLAGS) -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 target.tmp >> $(notdir $@).deps
+        @tail -n +2 target.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm target.tmp
     }
 
     cdl_option CYGBLD_LINKER_SCRIPT {
Index: hal/mn10300/arch/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/mn10300/arch/current/ChangeLog,v
retrieving revision 1.28
diff -u -5 -p -r1.28 ChangeLog
--- hal/mn10300/arch/current/ChangeLog	8 Dec 2003 15:34:56 -0000	1.28
+++ hal/mn10300/arch/current/ChangeLog	22 Apr 2004 14:56:57 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_mn10300.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-12-08  Gary Thomas  <gary@mlbassoc.com>
 
 	* src/hal_misc.c: Only declare __mem_fault_handler if GDB stubs
 	are included (and it will be used).
 
Index: hal/mn10300/arch/current/cdl/hal_mn10300.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/mn10300/arch/current/cdl/hal_mn10300.cdl,v
retrieving revision 1.6
diff -u -5 -p -r1.6 hal_mn10300.cdl
--- hal/mn10300/arch/current/cdl/hal_mn10300.cdl	6 Dec 2002 18:25:56 -0000	1.6
+++ hal/mn10300/arch/current/cdl/hal_mn10300.cdl	22 Apr 2004 14:56:57 -0000
@@ -84,10 +84,10 @@ cdl_package CYGPKG_HAL_MN10300 {
 
     make {
         <PREFIX>/lib/vectors.o : <PACKAGE>/src/vectors.S
         $(CC) -Wp,-MD,vectors.tmp $(INCLUDE_PATH) $(CFLAGS) -c -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 vectors.tmp >> $(notdir $@).deps
+        @tail -n +2 vectors.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm vectors.tmp
     }
 }
Index: hal/openrisc/arch/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/openrisc/arch/current/ChangeLog,v
retrieving revision 1.2
diff -u -5 -p -r1.2 ChangeLog
--- hal/openrisc/arch/current/ChangeLog	8 Dec 2003 15:34:56 -0000	1.2
+++ hal/openrisc/arch/current/ChangeLog	22 Apr 2004 14:56:57 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_openrisc.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-12-08  Gary Thomas  <gary@mlbassoc.com>
 
 	* src/hal_misc.c: Only declare __mem_fault_handler if GDB stubs
 	are included (and it will be used).
 
Index: hal/openrisc/arch/current/cdl/hal_openrisc.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/openrisc/arch/current/cdl/hal_openrisc.cdl,v
retrieving revision 1.1
diff -u -5 -p -r1.1 hal_openrisc.cdl
--- hal/openrisc/arch/current/cdl/hal_openrisc.cdl	25 Apr 2003 04:13:13 -0000	1.1
+++ hal/openrisc/arch/current/cdl/hal_openrisc.cdl	22 Apr 2004 14:56:57 -0000
@@ -70,11 +70,11 @@ cdl_package CYGPKG_HAL_OPENRISC {
 
     make {
         <PREFIX>/lib/vectors.o : <PACKAGE>/src/vectors.S
         $(CC) -Wp,-MD,vectors.tmp $(INCLUDE_PATH) $(CFLAGS) -c -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 vectors.tmp >> $(notdir $@).deps
+        @tail -n +2 vectors.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm vectors.tmp
     }
 
     define_proc {
@@ -90,11 +90,11 @@ cdl_package CYGPKG_HAL_OPENRISC {
 
     make {
         <PREFIX>/lib/target.ld: <PACKAGE>/src/openrisc.ld
         $(CC) -E -P -Wp,-MD,target.tmp -DEXTRAS=1 -xc $(INCLUDE_PATH) $(CFLAGS) -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 target.tmp >> $(notdir $@).deps
+        @tail -n +2 target.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm target.tmp
     }
 
     cdl_option CYGHWR_HAL_OPENRISC_CPU_FREQ {
Index: hal/powerpc/arch/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/powerpc/arch/current/ChangeLog,v
retrieving revision 1.60
diff -u -5 -p -r1.60 ChangeLog
--- hal/powerpc/arch/current/ChangeLog	21 Dec 2003 13:41:17 -0000	1.60
+++ hal/powerpc/arch/current/ChangeLog	22 Apr 2004 14:56:57 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_powerpc.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-12-11  Gary Thomas  <gary@mlbassoc.com>
 
 	* include/hal_intr.h: Add macros to manipulate machine check enable
 	bit in the MSR.
 
Index: hal/powerpc/arch/current/cdl/hal_powerpc.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/powerpc/arch/current/cdl/hal_powerpc.cdl,v
retrieving revision 1.7
diff -u -5 -p -r1.7 hal_powerpc.cdl
--- hal/powerpc/arch/current/cdl/hal_powerpc.cdl	19 Sep 2003 17:11:26 -0000	1.7
+++ hal/powerpc/arch/current/cdl/hal_powerpc.cdl	22 Apr 2004 14:56:57 -0000
@@ -75,29 +75,29 @@ cdl_package CYGPKG_HAL_POWERPC {
     make -priority 1 {
         <PREFIX>/include/cyg/hal/ppc_offsets.inc : <PACKAGE>/src/hal_mk_defs.c
         $(CC) $(CFLAGS) $(INCLUDE_PATH) -Wp,-MD,ppc_offsets.tmp -o hal_mk_defs.tmp -S $<
         fgrep .equ hal_mk_defs.tmp | sed s/#// > $@
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 ppc_offsets.tmp >> $(notdir $@).deps
+        @tail -n +2 ppc_offsets.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm ppc_offsets.tmp hal_mk_defs.tmp
     }
 
     make {
         <PREFIX>/lib/vectors.o : <PACKAGE>/src/vectors.S
         $(CC) -Wp,-MD,vectors.tmp $(INCLUDE_PATH) $(CFLAGS) -c -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 vectors.tmp >> $(notdir $@).deps
+        @tail -n +2 vectors.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm vectors.tmp
     }
 
     make {
         <PREFIX>/lib/target.ld: <PACKAGE>/src/powerpc.ld
         $(CC) -E -P -Wp,-MD,target.tmp -DEXTRAS=1 -xc $(INCLUDE_PATH) $(CFLAGS) -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 target.tmp >> $(notdir $@).deps
+        @tail -n +2 target.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm target.tmp
     }
 
     cdl_option CYGSEM_HAL_POWERPC_RESET_USES_JUMP {
Index: hal/powerpc/mpc5xx/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/powerpc/mpc5xx/current/ChangeLog,v
retrieving revision 1.5
diff -u -5 -p -r1.5 ChangeLog
--- hal/powerpc/mpc5xx/current/ChangeLog	21 Apr 2004 17:41:44 -0000	1.5
+++ hal/powerpc/mpc5xx/current/ChangeLog	22 Apr 2004 14:56:58 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_powerpc_mpc5xx.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2004-04-21  Gary Thomas  <gary@mlbassoc.com>
 
 	* src/var_intr.c: 
 	* include/var_regs.h: Changes to allow compilation with latest GCC.
 
Index: hal/powerpc/mpc5xx/current/cdl/hal_powerpc_mpc5xx.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/powerpc/mpc5xx/current/cdl/hal_powerpc_mpc5xx.cdl,v
retrieving revision 1.2
diff -u -5 -p -r1.2 hal_powerpc_mpc5xx.cdl
--- hal/powerpc/mpc5xx/current/cdl/hal_powerpc_mpc5xx.cdl	23 May 2002 23:04:26 -0000	1.2
+++ hal/powerpc/mpc5xx/current/cdl/hal_powerpc_mpc5xx.cdl	22 Apr 2004 14:56:58 -0000
@@ -353,11 +353,11 @@ cdl_package CYGPKG_HAL_POWERPC_MPC5xx {
             <PREFIX>/bin/mpc5xxrev : <PACKAGE>/src/mpc5xxrev.c
             @sh -c "mkdir -p src $(dir $@)"
             $(CC) -c $(INCLUDE_PATH) -Wp,-MD,deps.tmp -I$(dir $<) $(CFLAGS) -o src/mpc5xxrev.o $<
             @echo $@ ": \\" > $(notdir $@).deps
             @echo $(wildcard $(PREFIX)/lib/*) " \\" >> $(notdir $@).deps
-            @tail +2 deps.tmp >> $(notdir $@).deps
+            @tail -n +2 deps.tmp >> $(notdir $@).deps
             @echo >> $(notdir $@).deps
             @rm deps.tmp
             $(CC) $(LDFLAGS) -L$(PREFIX)/lib -Ttarget.ld -o $@ src/mpc5xxrev.o
         }
     }
Index: hal/powerpc/mpc8xx/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/powerpc/mpc8xx/current/ChangeLog,v
retrieving revision 1.34
diff -u -5 -p -r1.34 ChangeLog
--- hal/powerpc/mpc8xx/current/ChangeLog	8 Dec 2003 14:31:55 -0000	1.34
+++ hal/powerpc/mpc8xx/current/ChangeLog	22 Apr 2004 14:56:58 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_powerpc_mpc8xx.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-12-08  Gary Thomas  <gary@mlbassoc.com>
 
 	* cdl/hal_powerpc_mpc8xx.cdl: Define HAL_PLATFORM_CPU, based on
 	actual CPU type selection - simplifies platform CDL files.
 
Index: hal/powerpc/mpc8xx/current/cdl/hal_powerpc_mpc8xx.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/powerpc/mpc8xx/current/cdl/hal_powerpc_mpc8xx.cdl,v
retrieving revision 1.11
diff -u -5 -p -r1.11 hal_powerpc_mpc8xx.cdl
--- hal/powerpc/mpc8xx/current/cdl/hal_powerpc_mpc8xx.cdl	8 Dec 2003 14:31:55 -0000	1.11
+++ hal/powerpc/mpc8xx/current/cdl/hal_powerpc_mpc8xx.cdl	22 Apr 2004 14:56:58 -0000
@@ -198,11 +198,11 @@ cdl_package CYGPKG_HAL_POWERPC_MPC8xx {
             <PREFIX>/bin/mpc8xxrev : <PACKAGE>/src/mpc8xxrev.c
             @sh -c "mkdir -p src $(dir $@)"
             $(CC) -c $(INCLUDE_PATH) -Wp,-MD,deps.tmp -I$(dir $<) $(CFLAGS) -o src/mpc8xxrev.o $<
             @echo $@ ": \\" > $(notdir $@).deps
             @echo $(wildcard $(PREFIX)/lib/*) " \\" >> $(notdir $@).deps
-            @tail +2 deps.tmp >> $(notdir $@).deps
+            @tail -n +2 deps.tmp >> $(notdir $@).deps
             @echo >> $(notdir $@).deps
             @rm deps.tmp
             $(CC) $(LDFLAGS) -L$(PREFIX)/lib -Ttarget.ld -o $@ src/mpc8xxrev.o
         }
     }
Index: hal/sh/arch/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/sh/arch/current/ChangeLog,v
retrieving revision 1.49
diff -u -5 -p -r1.49 ChangeLog
--- hal/sh/arch/current/ChangeLog	5 Feb 2004 16:02:27 -0000	1.49
+++ hal/sh/arch/current/ChangeLog	22 Apr 2004 14:56:58 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_sh.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2004-02-05  Kelvin Lawson  <klawson@ad-holdings.co.uk>
 
 	* include/hal_var_bank.inc: Fix build error on non-FPU systems due to
 	CYG_FPSCR.
 
Index: hal/sh/arch/current/cdl/hal_sh.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/sh/arch/current/cdl/hal_sh.cdl,v
retrieving revision 1.23
diff -u -5 -p -r1.23 hal_sh.cdl
--- hal/sh/arch/current/cdl/hal_sh.cdl	5 Dec 2003 17:06:23 -0000	1.23
+++ hal/sh/arch/current/cdl/hal_sh.cdl	22 Apr 2004 14:56:58 -0000
@@ -70,29 +70,29 @@ cdl_package CYGPKG_HAL_SH {
     make -priority 1 {
         <PREFIX>/include/cyg/hal/sh_offsets.inc : <PACKAGE>/src/hal_mk_defs.c
         $(CC) $(CFLAGS) $(INCLUDE_PATH) -Wp,-MD,sh_offsets.tmp -o hal_mk_defs.tmp -S $<
         fgrep .equ hal_mk_defs.tmp | sed s/#// > $@
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 sh_offsets.tmp >> $(notdir $@).deps
+        @tail -n +2 sh_offsets.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm sh_offsets.tmp hal_mk_defs.tmp
     }
 
     make {
         <PREFIX>/lib/vectors.o : <PACKAGE>/src/vectors.S
         $(CC) -Wp,-MD,vectors.tmp $(INCLUDE_PATH) $(CFLAGS) -c -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 vectors.tmp >> $(notdir $@).deps
+        @tail -n +2 vectors.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm vectors.tmp
     }
 
     make {
         <PREFIX>/lib/target.ld: <PACKAGE>/src/sh.ld
         $(CC) -E -P -Wp,-MD,target.tmp -xc $(INCLUDE_PATH) $(CFLAGS) -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 target.tmp >> $(notdir $@).deps
+        @tail -n +2 target.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm target.tmp
     }
 
     cdl_interface CYGINT_HAL_SH_DMA_CHANNELS {
Index: hal/sh/sh2/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/sh/sh2/current/ChangeLog,v
retrieving revision 1.3
diff -u -5 -p -r1.3 ChangeLog
--- hal/sh/sh2/current/ChangeLog	6 Aug 2002 16:00:24 -0000	1.3
+++ hal/sh/sh2/current/ChangeLog	22 Apr 2004 14:56:58 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_sh_sh2.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2002-08-06  Gary Thomas  <gary@chez-thomas.org>
 2002-08-06  Motoya Kurotsu <kurotsu@allied-telesis.co.jp>	
 
 	* src/sh2_scif.c: 
 	* src/sh2_sci.c: I/O channel data can't be constant - contains
Index: hal/sh/sh2/current/cdl/hal_sh_sh2.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/sh/sh2/current/cdl/hal_sh_sh2.cdl,v
retrieving revision 1.2
diff -u -5 -p -r1.2 hal_sh_sh2.cdl
--- hal/sh/sh2/current/cdl/hal_sh_sh2.cdl	23 May 2002 23:04:50 -0000	1.2
+++ hal/sh/sh2/current/cdl/hal_sh_sh2.cdl	22 Apr 2004 14:56:58 -0000
@@ -76,11 +76,11 @@ cdl_package CYGPKG_HAL_SH_SH2 {
     make -priority 1 {
         <PREFIX>/include/cyg/hal/sh2_offsets.inc : <PACKAGE>/src/var_mk_defs.c
         $(CC) $(CFLAGS) $(INCLUDE_PATH) -Wp,-MD,sh2_offsets.tmp -o var_mk_defs.tmp -S $<
         fgrep .equ var_mk_defs.tmp | sed s/#// > $@
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 sh2_offsets.tmp >> $(notdir $@).deps
+        @tail -n +2 sh2_offsets.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm sh2_offsets.tmp var_mk_defs.tmp
     }
 
     # CPU variant supported
Index: hal/sh/sh3/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/sh/sh3/current/ChangeLog,v
retrieving revision 1.21
diff -u -5 -p -r1.21 ChangeLog
--- hal/sh/sh3/current/ChangeLog	27 Apr 2003 22:17:17 -0000	1.21
+++ hal/sh/sh3/current/ChangeLog	22 Apr 2004 14:56:58 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_sh_sh3.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-04-27  Rod Campbell  <rodc@sigmaelectronics.com>
 
 	* include/mod_regs_cpg.h (CYGARC_REG_FRQCR_INIT_DIVIDER2): Fix
 	FRQCR_INIT_DIVIDER2 value when CYGHWR_HAL_SH_OOC_DIVIDER_2 set at 6.
 
Index: hal/sh/sh3/current/cdl/hal_sh_sh3.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/sh/sh3/current/cdl/hal_sh_sh3.cdl,v
retrieving revision 1.6
diff -u -5 -p -r1.6 hal_sh_sh3.cdl
--- hal/sh/sh3/current/cdl/hal_sh_sh3.cdl	23 May 2002 23:04:57 -0000	1.6
+++ hal/sh/sh3/current/cdl/hal_sh_sh3.cdl	22 Apr 2004 14:56:58 -0000
@@ -74,11 +74,11 @@ cdl_package CYGPKG_HAL_SH_SH3 {
     make -priority 1 {
         <PREFIX>/include/cyg/hal/sh3_offsets.inc : <PACKAGE>/src/var_mk_defs.c
         $(CC) $(CFLAGS) $(INCLUDE_PATH) -Wp,-MD,sh3_offsets.tmp -o var_mk_defs.tmp -S $<
         fgrep .equ var_mk_defs.tmp | sed s/#// > $@
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 sh3_offsets.tmp >> $(notdir $@).deps
+        @tail -n +2 sh3_offsets.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm sh3_offsets.tmp var_mk_defs.tmp
     }
 
     # CPU variant supported
Index: hal/sh/sh4/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/sh/sh4/current/ChangeLog,v
retrieving revision 1.21
diff -u -5 -p -r1.21 ChangeLog
--- hal/sh/sh4/current/ChangeLog	5 Dec 2003 17:07:29 -0000	1.21
+++ hal/sh/sh4/current/ChangeLog	22 Apr 2004 14:56:58 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_sh_sh4.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-09-21  Jonathan Larmour  <jifl@eCosCentric.com>
 
 	* src/var_misc.c (hal_variant_init): Set FPSCR on startup.
 
 	* src/sh4_scif.c (cyg_hal_plf_scif_set_baud):  New function, taken
Index: hal/sh/sh4/current/cdl/hal_sh_sh4.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/sh/sh4/current/cdl/hal_sh_sh4.cdl,v
retrieving revision 1.8
diff -u -5 -p -r1.8 hal_sh_sh4.cdl
--- hal/sh/sh4/current/cdl/hal_sh_sh4.cdl	5 Dec 2003 17:07:29 -0000	1.8
+++ hal/sh/sh4/current/cdl/hal_sh_sh4.cdl	22 Apr 2004 14:56:58 -0000
@@ -78,11 +78,11 @@ cdl_package CYGPKG_HAL_SH_SH4 {
     make -priority 1 {
         <PREFIX>/include/cyg/hal/sh4_offsets.inc : <PACKAGE>/src/var_mk_defs.c
         $(CC) $(CFLAGS) $(INCLUDE_PATH) -Wp,-MD,sh4_offsets.tmp -o var_mk_defs.tmp -S $<
         fgrep .equ var_mk_defs.tmp | sed s/#// > $@
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 sh4_offsets.tmp >> $(notdir $@).deps
+        @tail -n +2 sh4_offsets.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm sh4_offsets.tmp var_mk_defs.tmp
     }
 
     # CPU variant supported
Index: hal/sparc/arch/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/sparc/arch/current/ChangeLog,v
retrieving revision 1.4
diff -u -5 -p -r1.4 ChangeLog
--- hal/sparc/arch/current/ChangeLog	10 Apr 2003 18:07:57 -0000	1.4
+++ hal/sparc/arch/current/ChangeLog	22 Apr 2004 14:56:58 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_sparc.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-04-10  Nick Garnett  <nickg@balti.calivar.com>
 
 	* src/sparc.ld: 
 	Added libsupc++.a to GROUP() directive for GCC versions later than
 	3.0.
Index: hal/sparc/arch/current/cdl/hal_sparc.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/sparc/arch/current/cdl/hal_sparc.cdl,v
retrieving revision 1.2
diff -u -5 -p -r1.2 hal_sparc.cdl
--- hal/sparc/arch/current/cdl/hal_sparc.cdl	23 May 2002 23:05:06 -0000	1.2
+++ hal/sparc/arch/current/cdl/hal_sparc.cdl	22 Apr 2004 14:56:58 -0000
@@ -65,20 +65,20 @@ cdl_package CYGPKG_HAL_SPARC {
 
     make {
         <PREFIX>/lib/vectors.o : <PACKAGE>/src/vectors.S
         $(CC) -Wp,-MD,vectors.tmp $(INCLUDE_PATH) $(CFLAGS) -c -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 vectors.tmp >> $(notdir $@).deps
+        @tail -n +2 vectors.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm vectors.tmp
     }
 
     make {
         <PREFIX>/lib/target.ld: <PACKAGE>/src/sparc.ld
         $(CC) -E -P -Wp,-MD,target.tmp -DEXTRAS=1 -xc $(INCLUDE_PATH) $(CFLAGS) -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 target.tmp >> $(notdir $@).deps
+        @tail -n +2 target.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm target.tmp
     }
 
     cdl_component CYGPKG_HAL_SPARC_OPTIONS {
Index: hal/sparclite/arch/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/sparclite/arch/current/ChangeLog,v
retrieving revision 1.19
diff -u -5 -p -r1.19 ChangeLog
--- hal/sparclite/arch/current/ChangeLog	10 Apr 2003 18:07:58 -0000	1.19
+++ hal/sparclite/arch/current/ChangeLog	22 Apr 2004 14:56:58 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_sparclite.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-04-10  Nick Garnett  <nickg@balti.calivar.com>
 
 	* src/sparclite.ld: 
 	Added libsupc++.a to GROUP() directive for GCC versions later than
 	3.0.
Index: hal/sparclite/arch/current/cdl/hal_sparclite.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/sparclite/arch/current/cdl/hal_sparclite.cdl,v
retrieving revision 1.4
diff -u -5 -p -r1.4 hal_sparclite.cdl
--- hal/sparclite/arch/current/cdl/hal_sparclite.cdl	23 May 2002 23:05:13 -0000	1.4
+++ hal/sparclite/arch/current/cdl/hal_sparclite.cdl	22 Apr 2004 14:56:58 -0000
@@ -65,20 +65,20 @@ cdl_package CYGPKG_HAL_SPARCLITE {
 
     make {
         <PREFIX>/lib/vectors.o : <PACKAGE>/src/vectors.S
         $(CC) -Wp,-MD,vectors.tmp $(INCLUDE_PATH) $(CFLAGS) -c -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 vectors.tmp >> $(notdir $@).deps
+        @tail -n +2 vectors.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm vectors.tmp
     }
 
     make {
         <PREFIX>/lib/target.ld: <PACKAGE>/src/sparclite.ld
         $(CC) -E -P -Wp,-MD,target.tmp -DEXTRAS=1 -xc $(INCLUDE_PATH) $(CFLAGS) -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 target.tmp >> $(notdir $@).deps
+        @tail -n +2 target.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm target.tmp
     }
 
     cdl_component CYGPKG_HAL_SPARCLITE_OPTIONS {
Index: hal/synth/arch/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/synth/arch/current/ChangeLog,v
retrieving revision 1.20
diff -u -5 -p -r1.20 ChangeLog
--- hal/synth/arch/current/ChangeLog	24 Jul 2003 20:24:10 -0000	1.20
+++ hal/synth/arch/current/ChangeLog	22 Apr 2004 14:56:58 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_synth.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-07-18  Nick Garnett  <nickg@balti.calivar.com>
 
 	* cdl/hal_synth.cdl:
         Changed values for CYGNUM_HAL_RTC_NUMERATOR,
         CYGNUM_HAL_RTC_DENOMINATOR and CYGNUM_HAL_RTC_PERIOD to
Index: hal/synth/arch/current/cdl/hal_synth.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/synth/arch/current/cdl/hal_synth.cdl,v
retrieving revision 1.5
diff -u -5 -p -r1.5 hal_synth.cdl
--- hal/synth/arch/current/cdl/hal_synth.cdl	24 Jul 2003 20:24:11 -0000	1.5
+++ hal/synth/arch/current/cdl/hal_synth.cdl	22 Apr 2004 14:56:58 -0000
@@ -65,11 +65,11 @@ cdl_package CYGPKG_HAL_SYNTH {
 
     make {
         <PREFIX>/lib/target.ld: <PACKAGE>/src/synth.ld
         $(CC) -E -P -Wp,-MD,target.tmp -DEXTRAS=1 -xc $(INCLUDE_PATH) $(CFLAGS) -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 target.tmp >> $(notdir $@).deps
+        @tail -n +2 target.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm target.tmp
     }
     compile       synth_entry.c synth_diag.c synth_intr.c
 
Index: hal/synth/i386linux/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/synth/i386linux/current/ChangeLog,v
retrieving revision 1.8
diff -u -5 -p -r1.8 ChangeLog
--- hal/synth/i386linux/current/ChangeLog	15 Sep 2002 17:53:36 -0000	1.8
+++ hal/synth/i386linux/current/ChangeLog	22 Apr 2004 14:56:58 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_synth_i386.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2002-09-15  Bart Veer  <bartv@ecoscentric.com>
 
 	* src/syscall-i386-linux-1.0.S:
 	Add access system call
 
Index: hal/synth/i386linux/current/cdl/hal_synth_i386.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/synth/i386linux/current/cdl/hal_synth_i386.cdl,v
retrieving revision 1.3
diff -u -5 -p -r1.3 hal_synth_i386.cdl
--- hal/synth/i386linux/current/cdl/hal_synth_i386.cdl	23 May 2002 23:05:29 -0000	1.3
+++ hal/synth/i386linux/current/cdl/hal_synth_i386.cdl	22 Apr 2004 14:56:58 -0000
@@ -68,11 +68,11 @@ cdl_package CYGPKG_HAL_SYNTH_I386 {
 	
     make {
         <PREFIX>/lib/vectors.o : <PACKAGE>/src/vectors.S
         $(CC) -Wp,-MD,vectors.tmp $(INCLUDE_PATH) $(CFLAGS) -c -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 vectors.tmp >> $(notdir $@).deps
+        @tail -n +2 vectors.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm vectors.tmp
     }
     compile       context.S syscall-i386-linux-1.0.S
 
Index: hal/v85x/arch/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/v85x/arch/current/ChangeLog,v
retrieving revision 1.18
diff -u -5 -p -r1.18 ChangeLog
--- hal/v85x/arch/current/ChangeLog	8 Dec 2003 15:34:57 -0000	1.18
+++ hal/v85x/arch/current/ChangeLog	22 Apr 2004 14:56:58 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_v85x.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-12-08  Gary Thomas  <gary@mlbassoc.com>
 
 	* src/hal_misc.c: Remove unused __mem_fault_handler declaration.
 
 2001-11-26  Jesper Skov  <jskov@redhat.com>
Index: hal/v85x/arch/current/cdl/hal_v85x.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/v85x/arch/current/cdl/hal_v85x.cdl,v
retrieving revision 1.5
diff -u -5 -p -r1.5 hal_v85x.cdl
--- hal/v85x/arch/current/cdl/hal_v85x.cdl	23 May 2002 23:05:33 -0000	1.5
+++ hal/v85x/arch/current/cdl/hal_v85x.cdl	22 Apr 2004 14:56:58 -0000
@@ -71,20 +71,20 @@ cdl_package CYGPKG_HAL_V85X {
     make -priority 1 {
         <PREFIX>/include/cyg/hal/nec_offsets.inc : <PACKAGE>/src/hal_mk_defs.c
         $(CC) $(CFLAGS) $(INCLUDE_PATH) -Wp,-MD,nec_offsets.tmp -o hal_mk_defs.tmp -S $<
         fgrep .equ hal_mk_defs.tmp | sed s/#// > $@
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 nec_offsets.tmp >> $(notdir $@).deps
+        @tail -n +2 nec_offsets.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm nec_offsets.tmp hal_mk_defs.tmp
     }
 
     make {
         <PREFIX>/lib/vectors.o : <PACKAGE>/src/vectors.S
         $(CC) -Wp,-MD,vectors.tmp $(INCLUDE_PATH) $(CFLAGS) -c -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 vectors.tmp >> $(notdir $@).deps
+        @tail -n +2 vectors.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm vectors.tmp
     }
 
     cdl_option CYGSEM_HAL_V85X_INLINE_INTERRUPT_FUNCTIONS {
Index: hal/v85x/v850/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/v85x/v850/current/ChangeLog,v
retrieving revision 1.10
diff -u -5 -p -r1.10 ChangeLog
--- hal/v85x/v850/current/ChangeLog	10 Apr 2003 18:07:58 -0000	1.10
+++ hal/v85x/v850/current/ChangeLog	22 Apr 2004 14:56:58 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/hal_v85x_v850.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2003-04-10  Nick Garnett  <nickg@balti.calivar.com>
 
 	* src/v85x_v850.ld:
 	Added .eh_frame to data section. This is a stopgap fix to allow
 	C++ programs that define exceptions to link and run. It does not
Index: hal/v85x/v850/current/cdl/hal_v85x_v850.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/hal/v85x/v850/current/cdl/hal_v85x_v850.cdl,v
retrieving revision 1.6
diff -u -5 -p -r1.6 hal_v85x_v850.cdl
--- hal/v85x/v850/current/cdl/hal_v85x_v850.cdl	23 May 2002 23:05:42 -0000	1.6
+++ hal/v85x/v850/current/cdl/hal_v85x_v850.cdl	22 Apr 2004 14:56:58 -0000
@@ -104,11 +104,11 @@ cdl_package CYGPKG_HAL_V85X_V850 {
 
     make {
         <PREFIX>/lib/target.ld: <PACKAGE>/src/v85x_v850.ld
         $(CC) -E -P -Wp,-MD,target.tmp -DEXTRAS=1 -xc $(INCLUDE_PATH) $(CFLAGS) -o $@ $<
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 target.tmp >> $(notdir $@).deps
+        @tail -n +2 target.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm target.tmp
     }
 
     cdl_option CYGBLD_LINKER_SCRIPT {
Index: io/serial/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/io/serial/current/ChangeLog,v
retrieving revision 1.57
diff -u -5 -p -r1.57 ChangeLog
--- io/serial/current/ChangeLog	20 Jan 2004 08:53:30 -0000	1.57
+++ io/serial/current/ChangeLog	22 Apr 2004 14:56:59 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/io_serial.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2004-01-12  Dan Jakubiec <djakubiec@yahoo.com>
 
 	* src/common/serial.c: serial_write() was returning an incorrect
 	result code in non-blocking mode when output was blocked.  The
 	previous code would return ENOERR with 0 bytes written.  This
Index: io/serial/current/cdl/io_serial.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/io/serial/current/cdl/io_serial.cdl,v
retrieving revision 1.10
diff -u -5 -p -r1.10 io_serial.cdl
--- io/serial/current/cdl/io_serial.cdl	24 Feb 2003 14:25:18 -0000	1.10
+++ io/serial/current/cdl/io_serial.cdl	22 Apr 2004 14:56:58 -0000
@@ -251,11 +251,11 @@ cdl_package CYGPKG_IO_SERIAL {
             <PREFIX>/bin/serial_echo : <PACKAGE>/tests/serial_echo.c
             @sh -c "mkdir -p tests $(dir $@)"
             $(CC) -c $(INCLUDE_PATH) -Wp,-MD,deps.tmp -I$(dir $<) $(CFLAGS) -o tests/serial_echo.o $<
             @echo $@ ": \\" > $(notdir $@).deps
             @echo $(wildcard $(PREFIX)/lib/*) " \\" >> $(notdir $@).deps
-            @tail +2 deps.tmp >> $(notdir $@).deps
+            @tail -n +2 deps.tmp >> $(notdir $@).deps
             @echo >> $(notdir $@).deps
             @rm deps.tmp
             $(CC) $(LDFLAGS) -L$(PREFIX)/lib -Ttarget.ld -o $@ tests/serial_echo.o
         }
     }
Index: services/loader/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/services/loader/current/ChangeLog,v
retrieving revision 1.1
diff -u -5 -p -r1.1 ChangeLog
--- services/loader/current/ChangeLog	2 Oct 2001 18:28:29 -0000	1.1
+++ services/loader/current/ChangeLog	22 Apr 2004 14:56:59 -0000
@@ -1,5 +1,10 @@
+2004-04-22  Jani Monoses <jani@iv.ro>
+
+	 * cdl/loader.cdl :
+	 Invoke tail with stricter syntax that works in latest coreutils. 
+
 2001-01-05  Nick Garnett  <nickg@cygnus.co.uk>
 
 	* include/ppc_elf.h:
 	* include/loader.hxx:
 	Added ppc_elf.h.
Index: services/loader/current/cdl/loader.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/services/loader/current/cdl/loader.cdl,v
retrieving revision 1.3
diff -u -5 -p -r1.3 loader.cdl
--- services/loader/current/cdl/loader.cdl	23 May 2002 23:08:39 -0000	1.3
+++ services/loader/current/cdl/loader.cdl	22 Apr 2004 14:56:59 -0000
@@ -127,11 +127,11 @@ cdl_package CYGPKG_LOADER {
 
 	make -priority 50 {
 	    <PREFIX>/lib/dynamic.ld: <PACKAGE>/src/dynamic.ld
 	    $(CC) -E -P -Wp,-MD,dynamic.tmp -DEXTRAS=1 -xc $(INCLUDE_PATH) $(CFLAGS) -o $@ $<
 	    @echo $@ ": \\" > $(notdir $@).deps
-	    @tail +2 dynamic.tmp >> $(notdir $@).deps
+	    @tail -n +2 dynamic.tmp >> $(notdir $@).deps
 	    @echo >> $(notdir $@).deps
 	    @rm dynamic.tmp
 
 	}
     }
@@ -143,11 +143,11 @@ cdl_package CYGPKG_LOADER {
 
 	make -priority 110 {
         <PREFIX>/lib/crtbeginS.o : <PACKAGE>/src/crtbeginS.c
         $(CC) -Wp,-MD,crtbeginS.tmp $(INCLUDE_PATH) -g0 -Wall -finhibit-size-directive -fno-inline-functions -fno-exceptions -c -o $@ $<	    
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 crtbeginS.tmp >> $(notdir $@).deps
+        @tail -n +2 crtbeginS.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm crtbeginS.tmp
 	}
     }
 
@@ -158,11 +158,11 @@ cdl_package CYGPKG_LOADER {
 
 	make -priority 110 {
         <PREFIX>/lib/crtendS.o : <PACKAGE>/src/crtendS.c
         $(CC) -Wp,-MD,crtendS.tmp $(INCLUDE_PATH) -g0 -Wall -finhibit-size-directive -fno-inline-functions -fno-exceptions -c -o $@ $<	    
         @echo $@ ": \\" > $(notdir $@).deps
-        @tail +2 crtendS.tmp >> $(notdir $@).deps
+        @tail -n +2 crtendS.tmp >> $(notdir $@).deps
         @echo >> $(notdir $@).deps
         @rm crtendS.tmp
 	}
     }
     
@@ -178,11 +178,11 @@ cdl_package CYGPKG_LOADER {
 	make -priority 160 {
 	    <PREFIX>/lib/libdlforce.so : <PACKAGE>/src/dlforce.c
 	            $(CC) $(CFLAGS) -Wp,-MD,dlforce.tmp $(INCLUDE_PATH) -shared -c -o src/dlforce.o $<
 	            $(CC) -g -nostdlib -L$(PREFIX)/lib -shared -Tdynamic.ld -o $@ $(PREFIX)/lib/crtbeginS.o src/dlforce.o $(PREFIX)/lib/crtendS.o
 	            @echo $@ ": \\" > $(notdir $@).deps
-                    @tail +2 dlforce.tmp >> $(notdir $@).deps
+                    @tail -n +2 dlforce.tmp >> $(notdir $@).deps
                     @echo >> $(notdir $@).deps
                     @rm dlforce.tmp
 	}
     }
     
@@ -200,11 +200,11 @@ cdl_package CYGPKG_LOADER {
 	    tests/libfoo.so : <PACKAGE>/tests/foo.c
 	            mkdir -p tests
 	            $(CC) $(CFLAGS) -Wp,-MD,foo.tmp $(INCLUDE_PATH) -shared -c -o tests/foo.o $<
 	            $(CC) $(LDFLAGS) -L$(PREFIX)/lib -shared -Tdynamic.ld -o $@ $(PREFIX)/lib/crtbeginS.o tests/foo.o $(PREFIX)/lib/crtendS.o
 	            @echo $@ ": \\" > $(notdir $@).deps
-	            @tail +2 foo.tmp >> $(notdir $@).deps
+	            @tail -n +2 foo.tmp >> $(notdir $@).deps
 	            @echo >> $(notdir $@).deps
 	            @rm foo.tmp
 	            cc -o entable $(REPOSITORY)/$(PACKAGE)/tests/entable.c
 	            ./entable libfoo <tests/libfoo.so >tests/libfoo.so.c
 	}
@@ -221,11 +221,11 @@ cdl_package CYGPKG_LOADER {
 	            mkdir -p $(PREFIX)/tests/services/loader/current/tests
 	            $(CC) $(CFLAGS) -Wp,-MD,loadfoo.tmp $(INCLUDE_PATH) -c -o tests/loadfoo.o $< 
 #	            $(CC) $(LDFLAGS) -L$(PREFIX)/lib -Ttarget.ld -ldlforce -o $@ $(PREFIX)/lib/crtbeginS.o tests/loadfoo.o $(PREFIX)/lib/crtendS.o
 	            $(CC) $(LDFLAGS) -Wl,-E -L$(PREFIX)/lib -Ttarget.ld -ldlforce -o $@ tests/loadfoo.o
 	            @echo $@ ": \\" > $(notdir $@).deps
-	            @tail +2 loadfoo.tmp >> $(notdir $@).deps
+	            @tail -n +2 loadfoo.tmp >> $(notdir $@).deps
 	            @echo >> $(notdir $@).deps
 	            @rm loadfoo.tmp
 	    
 	}
     }

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]