2007-05-28 Joel Sherrill <joel.sherrill@OARcorp.com>

* startup/bspstart.c: Eliminate maximum_drivers configuration parameter
	since it was used to configure a no longer used feature. Device names
	are now part of the filesystem not in a table.
This commit is contained in:
Joel Sherrill
2007-05-28 15:51:57 +00:00
parent ff3f8c85c3
commit 15aecdc8f4
16 changed files with 48 additions and 11 deletions

View File

@@ -1,3 +1,9 @@
2007-05-28 Joel Sherrill <joel.sherrill@OARcorp.com>
* startup/bspstart.c: Eliminate maximum_drivers configuration parameter
since it was used to configure a no longer used feature. Device names
are now part of the filesystem not in a table.
2007-05-15 Ray Xu <rayx@gmail.com>
* Makefile.am: Add abort.rel since it is now in the BSP shared source,

View File

@@ -148,8 +148,6 @@ void bsp_start_default( void )
BSP_Configuration.microseconds_per_tick );
printk( "ticks_per_timeslice = 0x%x\n",
BSP_Configuration.ticks_per_timeslice );
printk( "maximum_devices = 0x%x\n",
BSP_Configuration.maximum_devices );
printk( "number_of_device_drivers = 0x%x\n",
BSP_Configuration.number_of_device_drivers );
printk( "Device_driver_table = 0x%x\n",

View File

@@ -1,3 +1,9 @@
2007-05-28 Joel Sherrill <joel.sherrill@OARcorp.com>
* startup/bspstart.c: Eliminate maximum_drivers configuration parameter
since it was used to configure a no longer used feature. Device names
are now part of the filesystem not in a table.
2007-05-15 Ray Xu <rayx@gmail.com>
* Makefile.am: Add abort.rel since it is now in the BSP shared source,

View File

@@ -135,8 +135,6 @@ void bsp_start_default( void )
BSP_Configuration.microseconds_per_tick );
printk( "ticks_per_timeslice = 0x%x\n\r",
BSP_Configuration.ticks_per_timeslice );
printk( "maximum_devices = 0x%x\n\r",
BSP_Configuration.maximum_devices );
printk( "number_of_device_drivers = 0x%x\n\r",
BSP_Configuration.number_of_device_drivers );
printk( "Device_driver_table = 0x%x\n\r",

View File

@@ -1,3 +1,9 @@
2007-05-28 Joel Sherrill <joel.sherrill@OARcorp.com>
* startup/bspstart.c: Eliminate maximum_drivers configuration parameter
since it was used to configure a no longer used feature. Device names
are now part of the filesystem not in a table.
2007-05-15 Ray Xu <rayx@gmail.com>
* Makefile.am: Add abort.rel since it is now in the BSP shared source,

View File

@@ -159,7 +159,6 @@ void bsp_start_default( void )
BSP_Configuration.microseconds_per_tick );
printk( "ticks_per_timeslice = 0x%x\n",
BSP_Configuration.ticks_per_timeslice );
printk( "maximum_devices = 0x%x\n", BSP_Configuration.maximum_devices );
printk( "number_of_device_drivers = 0x%x\n",
BSP_Configuration.number_of_device_drivers );
printk( "Device_driver_table = 0x%x\n",

View File

@@ -1,3 +1,9 @@
2007-05-28 Joel Sherrill <joel.sherrill@OARcorp.com>
* startup/bspstart.c: Eliminate maximum_drivers configuration parameter
since it was used to configure a no longer used feature. Device names
are now part of the filesystem not in a table.
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
* bsp_specs: Remove qrtems_debug.

View File

@@ -173,7 +173,6 @@ void bsp_start_default( void )
printk("maximum_extensions = 0x%x\n", BSP_Configuration.maximum_extensions);
printk("microseconds_per_tick = 0x%x\n", BSP_Configuration.microseconds_per_tick);
printk("ticks_per_timeslice = 0x%x\n", BSP_Configuration.ticks_per_timeslice);
printk("maximum_devices = 0x%x\n", BSP_Configuration.maximum_devices);
printk("number_of_device_drivers = 0x%x\n", BSP_Configuration.number_of_device_drivers);
printk("Device_driver_table = 0x%x\n", BSP_Configuration.Device_driver_table);
#endif

View File

@@ -1,3 +1,9 @@
2007-05-28 Joel Sherrill <joel.sherrill@OARcorp.com>
* startup/bspstart.c: Eliminate maximum_drivers configuration parameter
since it was used to configure a no longer used feature. Device names
are now part of the filesystem not in a table.
2007-05-15 Ray Xu <rayx@gmail.com>
* Makefile.am: Add abort.rel since it is now in the BSP shared source,

View File

@@ -172,7 +172,6 @@ void bsp_start_default( void )
BSP_Configuration.microseconds_per_tick );
printk( "ticks_per_timeslice = 0x%x\n",
BSP_Configuration.ticks_per_timeslice );
printk( "maximum_devices = 0x%x\n", BSP_Configuration.maximum_devices );
printk( "number_of_device_drivers = 0x%x\n",
BSP_Configuration.number_of_device_drivers );
printk( "Device_driver_table = 0x%x\n",

View File

@@ -1,3 +1,9 @@
2007-05-28 Joel Sherrill <joel.sherrill@OARcorp.com>
* startup/bspstart.c: Eliminate maximum_drivers configuration parameter
since it was used to configure a no longer used feature. Device names
are now part of the filesystem not in a table.
2007-05-15 Ray Xu <rayx@gmail.com>
* Makefile.am: Add abort.rel since it is now in the BSP shared source,

View File

@@ -229,7 +229,6 @@ void bsp_start_default( void )
BSP_Configuration.microseconds_per_tick );
printk( "ticks_per_timeslice = 0x%x\n",
BSP_Configuration.ticks_per_timeslice );
printk( "maximum_devices = 0x%x\n", BSP_Configuration.maximum_devices );
printk( "number_of_device_drivers = 0x%x\n",
BSP_Configuration.number_of_device_drivers );
printk( "Device_driver_table = 0x%x\n",

View File

@@ -1,3 +1,9 @@
2007-05-28 Joel Sherrill <joel.sherrill@OARcorp.com>
* startup/bspstart.c: Eliminate maximum_drivers configuration parameter
since it was used to configure a no longer used feature. Device names
are now part of the filesystem not in a table.
2007-05-28 Joel Sherrill <joel.sherrill@OARcorp.com>
PR 1244/bsps

View File

@@ -227,7 +227,6 @@ void bsp_start_default( void )
BSP_Configuration.microseconds_per_tick );
printk( "ticks_per_timeslice = 0x%x\n",
BSP_Configuration.ticks_per_timeslice );
printk( "maximum_devices = 0x%x\n", BSP_Configuration.maximum_devices );
printk( "number_of_device_drivers = 0x%x\n",
BSP_Configuration.number_of_device_drivers );
printk( "Device_driver_table = 0x%x\n",

View File

@@ -1,3 +1,9 @@
2007-05-28 Joel Sherrill <joel.sherrill@OARcorp.com>
* startup/bspstart.c: Eliminate maximum_drivers configuration parameter
since it was used to configure a no longer used feature. Device names
are now part of the filesystem not in a table.
2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
* bsp_specs: Remove qrtems_debug.

View File

@@ -132,8 +132,6 @@ void bsp_start( void )
BSP_Configuration.microseconds_per_tick );
printk( "ticks_per_timeslice = 0x%x\n",
BSP_Configuration.ticks_per_timeslice );
printk( "maximum_devices = 0x%x\n",
BSP_Configuration.maximum_devices );
printk( "number_of_device_drivers = 0x%x\n",
BSP_Configuration.number_of_device_drivers );
printk( "Device_driver_table = 0x%x\n",