- Your First Loadable Kernel Module - June 26, 2009
- Your First Loadable Kernel, Part 2 - July 1, 2009
- Loadble Kernel Modules, Coming and Going - July 8, 2009
- Everything You Wanted to Know About Module Params- July 15, 2009
- Building and Running a New Kernel - July 22, 2009
- Kernel Symbols: What's Available to Your Module - July 29, 2009
- [What's in That Loadable Module, Anyway? - Augus
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from xml.dom.minidom import parseString | |
| # Documentation on Permissions in AndroidManifest.xml | |
| # https://developer.android.com/guide/topics/manifest/manifest-intro#perms | |
| data = '' # string data from file | |
| with open('AndroidManifest.xml', 'r') as f: | |
| data = f.read() | |
| dom = parseString(data) # parse file contents to xml dom |