From 731c9fccb90f6a449cb250937448f3c0952736e1 Mon Sep 17 00:00:00 2001
From: Erik Kooistra <kooistra@astron.nl>
Date: Fri, 13 Jun 2014 11:32:05 +0000
Subject: [PATCH] Renamed eth_layers_pkg package in
 common/src/vhdl/common_network_layers_pkg.vhd into common_network_layers_pkg.

---
 .../base/common/src/vhdl/common_network_layers_pkg.vhd    | 8 ++++----
 libraries/io/eth/src/vhdl/eth.vhd                         | 2 +-
 libraries/io/eth/src/vhdl/eth_control.vhd                 | 2 +-
 libraries/io/eth/src/vhdl/eth_hdr.vhd                     | 2 +-
 libraries/io/eth/src/vhdl/eth_hdr_ctrl.vhd                | 2 +-
 libraries/io/eth/src/vhdl/eth_hdr_status.vhd              | 2 +-
 libraries/io/eth/src/vhdl/eth_hdr_store.vhd               | 2 +-
 libraries/io/eth/src/vhdl/eth_ihl_to_20.vhd               | 2 +-
 libraries/io/eth/src/vhdl/eth_mm_reg_frame.vhd            | 2 +-
 libraries/io/eth/src/vhdl/eth_pkg.vhd                     | 2 +-
 libraries/io/eth/tb/vhdl/tb_eth.vhd                       | 2 +-
 libraries/io/eth/tb/vhdl/tb_eth_ihl_to_20.vhd             | 2 +-
 libraries/io/eth/tb/vhdl/tb_eth_udp_offload.vhd           | 2 +-
 libraries/technology/tse/tb_tech_tse.vhd                  | 2 +-
 libraries/technology/tse/tb_tech_tse_pkg.vhd              | 2 +-
 15 files changed, 18 insertions(+), 18 deletions(-)

diff --git a/libraries/base/common/src/vhdl/common_network_layers_pkg.vhd b/libraries/base/common/src/vhdl/common_network_layers_pkg.vhd
index c835020efd..e1a39d1818 100644
--- a/libraries/base/common/src/vhdl/common_network_layers_pkg.vhd
+++ b/libraries/base/common/src/vhdl/common_network_layers_pkg.vhd
@@ -26,7 +26,7 @@ USE IEEE.numeric_std.ALL;
 USE common_lib.common_pkg.ALL;
 
 
-PACKAGE eth_layers_pkg IS
+PACKAGE common_network_layers_pkg IS
 
   -- All *_len constants are in nof octets = nof bytes
   CONSTANT c_8                     : NATURAL := c_octet_w;  -- = 8
@@ -445,10 +445,10 @@ PACKAGE eth_layers_pkg IS
   FUNCTION func_eth_icmp_response_header(icmp : t_eth_total_header_arr; mac_addr : STD_LOGIC_VECTOR(c_eth_mac_addr_w-1 DOWNTO 0)) RETURN t_eth_total_header_arr;
   FUNCTION func_eth_udp_response_header( udp  : t_eth_total_header_arr; mac_addr : STD_LOGIC_VECTOR(c_eth_mac_addr_w-1 DOWNTO 0)) RETURN t_eth_total_header_arr;
   
-END eth_layers_pkg;
+END common_network_layers_pkg;
 
 
-PACKAGE BODY eth_layers_pkg IS
+PACKAGE BODY common_network_layers_pkg IS
 
   ------------------------------------------------------------------------------
   -- Total Ethernet Header
@@ -736,4 +736,4 @@ PACKAGE BODY eth_layers_pkg IS
     RETURN v_response;
   END;
   
-END eth_layers_pkg;
+END common_network_layers_pkg;
diff --git a/libraries/io/eth/src/vhdl/eth.vhd b/libraries/io/eth/src/vhdl/eth.vhd
index b9378d07df..41199495c1 100644
--- a/libraries/io/eth/src/vhdl/eth.vhd
+++ b/libraries/io/eth/src/vhdl/eth.vhd
@@ -25,7 +25,7 @@ USE IEEE.std_logic_1164.ALL;
 USE common_lib.common_pkg.ALL;
 USE common_lib.common_mem_pkg.ALL;
 USE dp_lib.dp_stream_pkg.ALL;
-USE common_lib.eth_layers_pkg.ALL;
+USE common_lib.common_network_layers_pkg.ALL;
 USE tech_tse_lib.tech_tse_pkg.ALL;
 USE work.eth_pkg.ALL;
 USE technology_lib.technology_select_pkg.ALL;
diff --git a/libraries/io/eth/src/vhdl/eth_control.vhd b/libraries/io/eth/src/vhdl/eth_control.vhd
index 912840e7f7..1f42b2725b 100644
--- a/libraries/io/eth/src/vhdl/eth_control.vhd
+++ b/libraries/io/eth/src/vhdl/eth_control.vhd
@@ -26,7 +26,7 @@ USE IEEE.numeric_std.ALL;
 USE common_lib.common_pkg.ALL;
 USE common_lib.common_mem_pkg.ALL;
 USE dp_lib.dp_stream_pkg.ALL;
-USE common_lib.eth_layers_pkg.ALL;
+USE common_lib.common_network_layers_pkg.ALL;
 USE work.eth_pkg.ALL;
 
 ENTITY eth_control IS
diff --git a/libraries/io/eth/src/vhdl/eth_hdr.vhd b/libraries/io/eth/src/vhdl/eth_hdr.vhd
index cf8e08a1cb..1cfb2aea15 100644
--- a/libraries/io/eth/src/vhdl/eth_hdr.vhd
+++ b/libraries/io/eth/src/vhdl/eth_hdr.vhd
@@ -25,7 +25,7 @@ USE IEEE.std_logic_1164.ALL;
 USE IEEE.numeric_std.ALL;
 USE common_lib.common_pkg.ALL;
 USE dp_lib.dp_stream_pkg.ALL;
-USE common_lib.eth_layers_pkg.ALL;
+USE common_lib.common_network_layers_pkg.ALL;
 USE work.eth_pkg.ALL;
 
 -- Description:
diff --git a/libraries/io/eth/src/vhdl/eth_hdr_ctrl.vhd b/libraries/io/eth/src/vhdl/eth_hdr_ctrl.vhd
index 55260a2ca5..721f5a77e4 100644
--- a/libraries/io/eth/src/vhdl/eth_hdr_ctrl.vhd
+++ b/libraries/io/eth/src/vhdl/eth_hdr_ctrl.vhd
@@ -25,7 +25,7 @@ USE IEEE.std_logic_1164.ALL;
 USE IEEE.numeric_std.ALL;
 USE common_lib.common_pkg.ALL;
 USE dp_lib.dp_stream_pkg.ALL;
-USE common_lib.eth_layers_pkg.ALL;
+USE common_lib.common_network_layers_pkg.ALL;
 USE work.eth_pkg.ALL;
 
 -- Description:
diff --git a/libraries/io/eth/src/vhdl/eth_hdr_status.vhd b/libraries/io/eth/src/vhdl/eth_hdr_status.vhd
index d729f14b85..841a1ddbc4 100644
--- a/libraries/io/eth/src/vhdl/eth_hdr_status.vhd
+++ b/libraries/io/eth/src/vhdl/eth_hdr_status.vhd
@@ -25,7 +25,7 @@ USE IEEE.std_logic_1164.ALL;
 USE IEEE.numeric_std.ALL;
 USE common_lib.common_pkg.ALL;
 USE dp_lib.dp_stream_pkg.ALL;
-USE common_lib.eth_layers_pkg.ALL;
+USE common_lib.common_network_layers_pkg.ALL;
 USE work.eth_pkg.ALL;
 
 -- Purpose:
diff --git a/libraries/io/eth/src/vhdl/eth_hdr_store.vhd b/libraries/io/eth/src/vhdl/eth_hdr_store.vhd
index 8bd70fdd44..ea5c60da95 100644
--- a/libraries/io/eth/src/vhdl/eth_hdr_store.vhd
+++ b/libraries/io/eth/src/vhdl/eth_hdr_store.vhd
@@ -24,7 +24,7 @@ LIBRARY IEEE, common_lib, dp_lib;
 USE IEEE.std_logic_1164.ALL;
 USE common_lib.common_pkg.ALL;
 USE dp_lib.dp_stream_pkg.ALL;
-USE common_lib.eth_layers_pkg.ALL;
+USE common_lib.common_network_layers_pkg.ALL;
 USE work.eth_pkg.ALL;
 
 -- Purpose:
diff --git a/libraries/io/eth/src/vhdl/eth_ihl_to_20.vhd b/libraries/io/eth/src/vhdl/eth_ihl_to_20.vhd
index edaae16bb9..facba955de 100644
--- a/libraries/io/eth/src/vhdl/eth_ihl_to_20.vhd
+++ b/libraries/io/eth/src/vhdl/eth_ihl_to_20.vhd
@@ -25,7 +25,7 @@ USE IEEE.std_logic_1164.ALL;
 USE IEEE.numeric_std.ALL;
 USE common_lib.common_pkg.ALL;
 USE dp_lib.dp_stream_pkg.ALL;
-USE common_lib.eth_layers_pkg.ALL;
+USE common_lib.common_network_layers_pkg.ALL;
 USE work.eth_pkg.ALL;
 
 -- Purpose:
diff --git a/libraries/io/eth/src/vhdl/eth_mm_reg_frame.vhd b/libraries/io/eth/src/vhdl/eth_mm_reg_frame.vhd
index 2c2d537dc3..cbf329ade1 100644
--- a/libraries/io/eth/src/vhdl/eth_mm_reg_frame.vhd
+++ b/libraries/io/eth/src/vhdl/eth_mm_reg_frame.vhd
@@ -24,7 +24,7 @@ LIBRARY IEEE, common_lib;
 USE IEEE.std_logic_1164.ALL;
 USE IEEE.numeric_std.ALL;
 USE common_lib.common_pkg.ALL;
-USE common_lib.eth_layers_pkg.ALL;
+USE common_lib.common_network_layers_pkg.ALL;
 USE work.eth_pkg.ALL;
 
 ENTITY eth_mm_reg_frame IS
diff --git a/libraries/io/eth/src/vhdl/eth_pkg.vhd b/libraries/io/eth/src/vhdl/eth_pkg.vhd
index a9a45752bb..c4f2ffa4cc 100644
--- a/libraries/io/eth/src/vhdl/eth_pkg.vhd
+++ b/libraries/io/eth/src/vhdl/eth_pkg.vhd
@@ -25,7 +25,7 @@ USE IEEE.std_logic_1164.ALL;
 USE IEEE.numeric_std.ALL;
 USE common_lib.common_pkg.ALL;
 USE dp_lib.dp_stream_pkg.ALL;
-USE common_lib.eth_layers_pkg.ALL;
+USE common_lib.common_network_layers_pkg.ALL;
 USE tech_tse_lib.tech_tse_pkg.ALL;
 
 
diff --git a/libraries/io/eth/tb/vhdl/tb_eth.vhd b/libraries/io/eth/tb/vhdl/tb_eth.vhd
index a2b905b618..8c4833a513 100644
--- a/libraries/io/eth/tb/vhdl/tb_eth.vhd
+++ b/libraries/io/eth/tb/vhdl/tb_eth.vhd
@@ -47,7 +47,7 @@ USE common_lib.common_pkg.ALL;
 USE common_lib.common_mem_pkg.ALL;
 USE common_lib.tb_common_mem_pkg.ALL;
 USE dp_lib.dp_stream_pkg.ALL;
-USE common_lib.eth_layers_pkg.ALL;
+USE common_lib.common_network_layers_pkg.ALL;
 USE WORK.eth_pkg.ALL;
 USE tech_tse_lib.tech_tse_pkg.ALL;
 USE tech_tse_lib.tb_tech_tse_pkg.ALL;
diff --git a/libraries/io/eth/tb/vhdl/tb_eth_ihl_to_20.vhd b/libraries/io/eth/tb/vhdl/tb_eth_ihl_to_20.vhd
index 93f909bb42..965e42b78e 100644
--- a/libraries/io/eth/tb/vhdl/tb_eth_ihl_to_20.vhd
+++ b/libraries/io/eth/tb/vhdl/tb_eth_ihl_to_20.vhd
@@ -31,7 +31,7 @@ USE IEEE.std_logic_1164.ALL;
 USE IEEE.numeric_std.ALL;
 USE common_lib.common_pkg.ALL;
 USE dp_lib.dp_stream_pkg.ALL;
-USE common_lib.eth_layers_pkg.ALL;
+USE common_lib.common_network_layers_pkg.ALL;
 USE work.eth_pkg.ALL;
 
 
diff --git a/libraries/io/eth/tb/vhdl/tb_eth_udp_offload.vhd b/libraries/io/eth/tb/vhdl/tb_eth_udp_offload.vhd
index ae6547cac3..4f82a69c10 100644
--- a/libraries/io/eth/tb/vhdl/tb_eth_udp_offload.vhd
+++ b/libraries/io/eth/tb/vhdl/tb_eth_udp_offload.vhd
@@ -33,7 +33,7 @@ USE dp_lib.dp_stream_pkg.ALL;
 USE dp_lib.tb_dp_pkg.ALL;
 USE tech_tse_lib.tech_tse_pkg.ALL;
 USE tech_tse_lib.tb_tech_tse_pkg.ALL;
-USE common_lib.eth_layers_pkg.ALL;
+USE common_lib.common_network_layers_pkg.ALL;
 USE WORK.eth_pkg.ALL;
 
 ENTITY tb_eth_udp_offload IS
diff --git a/libraries/technology/tse/tb_tech_tse.vhd b/libraries/technology/tse/tb_tech_tse.vhd
index b5d2166585..d8ef19e2d5 100644
--- a/libraries/technology/tse/tb_tech_tse.vhd
+++ b/libraries/technology/tse/tb_tech_tse.vhd
@@ -35,7 +35,7 @@ USE technology_lib.technology_pkg.ALL;
 USE common_lib.common_pkg.ALL;
 USE common_lib.common_mem_pkg.ALL;
 USE dp_lib.dp_stream_pkg.ALL;
-USE common_lib.eth_layers_pkg.ALL;
+USE common_lib.common_network_layers_pkg.ALL;
 USE WORK.tech_tse_pkg.ALL;
 USE WORK.tb_tech_tse_pkg.ALL;
 
diff --git a/libraries/technology/tse/tb_tech_tse_pkg.vhd b/libraries/technology/tse/tb_tech_tse_pkg.vhd
index c982b27dd2..ee503fe27b 100644
--- a/libraries/technology/tse/tb_tech_tse_pkg.vhd
+++ b/libraries/technology/tse/tb_tech_tse_pkg.vhd
@@ -28,7 +28,7 @@ USE common_lib.common_mem_pkg.ALL;
 USE common_lib.tb_common_mem_pkg.ALL;
 USE dp_lib.dp_stream_pkg.ALL;
 USE dp_lib.tb_dp_pkg.ALL;
-USE common_lib.eth_layers_pkg.ALL;
+USE common_lib.common_network_layers_pkg.ALL;
 USE WORK.tech_tse_pkg.ALL;
 
 
-- 
GitLab