X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;f=direct%2Fpython%2Fyaffsfs.py;h=28d7097a39768f052087260106174c241b7ac9f9;hb=a5bab2056ca3c68d3e15568f81a6e1d697d23da5;hp=1d0c8ffde8c4845b20f4fa6341509c0cae8db118;hpb=41573908f821bcb40750e7c069ea8f5178f630e5;p=yaffs2.git diff --git a/direct/python/yaffsfs.py b/direct/python/yaffsfs.py index 1d0c8ff..28d7097 100644 --- a/direct/python/yaffsfs.py +++ b/direct/python/yaffsfs.py @@ -1,3 +1,16 @@ +## +## YAFFS: Yet Another Flash File System. A NAND-flash specific file system. +## +## Copyright (C) 2002-2010 Aleph One Ltd. +## for Toby Churchill Ltd and Brightstar Engineering +## +## Created by Charles Manning +## +## This program is free software; you can redistribute it and/or modify +## it under the terms of the GNU General Public License version 2 as +## published by the Free Software Foundation. +## + from ctypes import * cdll.LoadLibrary("./libyaffsfs.so") ylib = CDLL("./libyaffsfs.so") @@ -245,6 +258,21 @@ yaffs_start_up = ylib.yaffs_start_up yaffs_start_up.argtypes = [] yaffs_start_up.restype = c_int +#int yaffs_set_trace(unsigned int tm) { return yaffs_traceMask=tm; } +yaffs_set_trace=ylib.yaffs_set_trace +yaffs_set_trace.argtypes=[c_uint] +yaffs_set_trace.restype=c_uint + +#int yaffs_get_trace(void) { return yaffs_traceMask; } +yaffs_get_trace=ylib.yaffs_get_trace +yaffs_get_trace.argtypes=[] +yaffs_get_trace.restypes=c_uint + +#int yaffs_get_error(void) +yaffs_get_error=ylib.yaffs_get_error +yaffs_get_error.argtypes=[] +yaffs_get_error.restypes=c_int + yaffs_O_CREAT=ylib.yaffs_O_CREAT() yaffs_O_RDONLY=ylib.yaffs_O_RDONLY() yaffs_O_WRONLY=ylib.yaffs_O_WRONLY()