summaryrefslogtreecommitdiffstats
path: root/ipa-python/freeipa-python.spec
Commit message (Expand)AuthorAgeFilesLines
* Misc small fixesKarl MacMillan2007-09-281-1/+1
* Give ipa-adduser, ipa-addgroup and ipa-usermod an interactive modercritten@redhat.com2007-09-211-1/+1
* In the TCP case there is an extra (redundant) lenghtSimo Sorce2007-09-121-2/+2
* Update version numbers for release.milestone_3Karl MacMillan2007-09-101-1/+1
* Updated freeipa-admintool spec file to include additional tools.Karl MacMillan2007-08-171-2/+5
* Bump version numbers for release.Karl MacMillan2007-08-101-1/+1
* - Abstracted client class to work directly or over RPCrcritten@redhat.com2007-08-061-1/+8
* Add local-dist target.Karl MacMillan2007-08-011-0/+3
* Added spec files for python and admintools.Karl MacMillan2007-07-311-0/+45
m config Keyboard matrix config * @param keys List of keys to process (each is row, col) * @param num_keys Number of keys to process * @param keycode Returns a list of key codes, decoded from input * @param max_keycodes Size of key codes array (suggest 8) * */ int key_matrix_decode(struct key_matrix *config, struct key_matrix_key *keys, int num_keys, int keycode[], int max_keycodes); /** * Read the keyboard configuration out of the fdt. * * Decode properties of named "linux,<type>keymap" where <type> is either * empty, or "fn-". Then set up the plain key map (and the FN keymap if * present). * * @param config Keyboard matrix config * @param blob FDT blob * @param node Node containing compatible data * @return 0 if ok, -1 on error */ int key_matrix_decode_fdt(struct udevice *dev, struct key_matrix *config); /** * Set up a new key matrix. * * @param config Keyboard matrix config * @param rows Number of rows in key matrix * @param cols Number of columns in key matrix * @param ghost_filter Non-zero to enable ghost filtering * @return 0 if ok, -1 on error */ int key_matrix_init(struct key_matrix *config, int rows, int cols, int ghost_filter); #endif