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
| #!/bin/bash | |
| ## contents of ubinize.cfg | |
| # [ubifs] | |
| # mode=ubi | |
| # image=/tmp/ubifs.img | |
| # vol_id=0 | |
| # vol_size=128MiB | |
| # vol_type=dynamic | |
| # vol_name=rootfs |
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
| #include <fcntl.h> | |
| #include <sys/ioctl.h> | |
| #include <linux/fb.h> | |
| #include <sys/mman.h> | |
| #include <stdio.h> | |
| #include <stdint.h> | |
| static struct fb_var_screeninfo sinfo; | |
| static struct fb_fix_screeninfo fix_info; |
NewerOlder