unused files removed
authorKo Hayoon <hayoon.ko@samsung.com>
Wed, 29 Aug 2012 08:44:57 +0000 (17:44 +0900)
committerKo Hayoon <hayoon.ko@samsung.com>
Wed, 29 Aug 2012 08:45:46 +0000 (17:45 +0900)
Change-Id: Ie4b2a307ea0bb87268b8d079b460c8cf8f2c952f

AUTHORS [deleted file]
README [deleted file]
packaging/tel-plugin-imcmodem.spec
tool/Makefile [deleted file]
tool/main.c [deleted file]

diff --git a/AUTHORS b/AUTHORS
deleted file mode 100755 (executable)
index 0e9faa9..0000000
--- a/AUTHORS
+++ /dev/null
@@ -1,6 +0,0 @@
-Jongman Park <jman.park@samsung.com>
-Ja-young Gu <jygu@samsung.com>
-Kyeongchul Kim <kyeongchul.kim@samsung.com>
-DongHoo Park <donghoo.park@samsung.>
-Youngman Park <youngman.park@samsung.com>
-Inho Oh <inho48.oh@samsung.com>
diff --git a/README b/README
deleted file mode 100755 (executable)
index bbbc313..0000000
--- a/README
+++ /dev/null
@@ -1 +0,0 @@
-svnet plugin
index f1559731307dead99d53ec3bd9ff464cb2ca7529..e47a066ddbf6c12852a395c084af6efa142104ac 100755 (executable)
@@ -1,7 +1,7 @@
 #sbs-git:slp/pkgs/t/tel-plugin-imcmodem
 Name:       tel-plugin-imcmodem
 Summary:    telephony plugin library for AT communication with IMC modem
-Version:    0.1.0
+Version:    0.1.1
 Release:    1
 Group:      System/Libraries
 License:    Apache
diff --git a/tool/Makefile b/tool/Makefile
deleted file mode 100755 (executable)
index 0a81701..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-TARGET = nv_validation_test
-
-SRCS   = main.c ../src/nvdata.c
-OBJS   = $(SRCS:.c=.o)
-PKGS   = tcore glib-2.0 gobject-2.0
-
-CC             = gcc
-CFLAGS = -Wall -g `pkg-config --cflags $(PKGS)` -I../include
-LIBS   = `pkg-config --libs $(PKGS)`
-
-all: $(TARGET)
-
-$(TARGET): $(OBJS)
-       $(CC) $(OBJS) $(LIBS) -o $(TARGET)
-
-.c.o: $(SRCS)
-       $(CC) $(CFLAGS) -c $^ -o $@
-
-clean:
-       rm -f $(OBJS) $(TARGET)
diff --git a/tool/main.c b/tool/main.c
deleted file mode 100755 (executable)
index 670785a..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-/**
- * tel-plugin-imcmodem
- *
- * Copyright (c) 2000 - 2012 Samsung Electronics Co., Ltd All Rights Reserved
- *
- * Contact: Ja-young Gu <jygu@samsung.com>
- *
- * PROPRIETARY/CONFIDENTIAL
- *
- * This software is the confidential and proprietary information of SAMSUNG ELECTRONICS ("Confidential Information").
- * You shall not disclose such Confidential Information and shall
- * use it only in accordance with the terms of the license agreement you entered into with SAMSUNG ELECTRONICS.
- * SAMSUNG make no representations or warranties about the suitability
- * of the software, either express or implied, including but not
- * limited to the implied warranties of merchantability, fitness for a particular purpose, or non-infringement.
- * SAMSUNG shall not be liable for any damages suffered by licensee as
- * a result of using, modifying or distributing this software or its derivatives.
- */
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <sys/time.h>
-#include <unistd.h>
-#include <glib.h>
-#include <glib-object.h>
-
-#include "../include/nvdata.h"
-
-int main(int arg, char **argv)
-{
-
-       imcmodem_nvdata_init();
-
-       printf("update!\n");
-
-       imcmodem_nvdata_update_validation();
-
-       return 0;
-}
-