From: Ko Hayoon Date: Wed, 29 Aug 2012 08:44:57 +0000 (+0900) Subject: unused files removed X-Git-Tag: 2.0_alpha~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dde1d33896b8993041317f2f90c74a12e36d4671;p=platform%2Fcore%2Ftelephony%2Ftel-plugin-imcmodem.git unused files removed Change-Id: Ie4b2a307ea0bb87268b8d079b460c8cf8f2c952f --- diff --git a/AUTHORS b/AUTHORS deleted file mode 100755 index 0e9faa9..0000000 --- a/AUTHORS +++ /dev/null @@ -1,6 +0,0 @@ -Jongman Park -Ja-young Gu -Kyeongchul Kim -DongHoo Park -Youngman Park -Inho Oh diff --git a/README b/README deleted file mode 100755 index bbbc313..0000000 --- a/README +++ /dev/null @@ -1 +0,0 @@ -svnet plugin diff --git a/packaging/tel-plugin-imcmodem.spec b/packaging/tel-plugin-imcmodem.spec index f155973..e47a066 100755 --- a/packaging/tel-plugin-imcmodem.spec +++ b/packaging/tel-plugin-imcmodem.spec @@ -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 index 0a81701..0000000 --- a/tool/Makefile +++ /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 index 670785a..0000000 --- a/tool/main.c +++ /dev/null @@ -1,41 +0,0 @@ -/** - * tel-plugin-imcmodem - * - * Copyright (c) 2000 - 2012 Samsung Electronics Co., Ltd All Rights Reserved - * - * Contact: Ja-young Gu - * - * 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 -#include -#include -#include -#include -#include -#include - -#include "../include/nvdata.h" - -int main(int arg, char **argv) -{ - - imcmodem_nvdata_init(); - - printf("update!\n"); - - imcmodem_nvdata_update_validation(); - - return 0; -} -