https://gitee.com/jiang_xing/f1c100s_buildroot
Buildroot f1c100s一键编译
编译flash
make licheepi_nano-flash_defconfig
make
编译ramdisk
make licheepi_nano-ram_defconfig
make
烧写flash
sudo ./up-flash.sh
在内存中运行
sudo ./up-ram.sh
nes模拟器编译与采蘑菇运行
cd board/f1c100s/apps/infones/linux
make
把InfoNES和Super_mario_brothers.nes复制到"output/target/root"
在回到f1c10s_buildroot目录下 make
sudo ./up-flash.sh 或 sudo ./up-ram.sh
运行嵌入式linux系统,登陆后在/root目录下运行
./InfoNES Super_mario_brothers.nes
修改核心添加RGB与BGR切换功能(画PCB时方便走线)
output/build/linux-5.2.11/arch/arm/boot/dts/suniv-f1c100s.dtsi
RGB
be0: display-backend@1e60000 {
compatible = "allwinner,suniv-f1c100s-display-backend";
reg = <0x01e60000 0x10000>;
reg-names = "be";
interrupts = <31>;
clocks = <&ccu CLK_BUS_DE_BE>, <&ccu CLK_DE_BE>,
<&ccu CLK_DRAM_DE_BE>;
clock-names = "ahb", "mod",
"ram";
resets = <&ccu RST_BUS_DE_BE>;
reset-names = "be";
assigned-clocks = <&ccu CLK_DE_BE>;
assigned-clock-rates = <300000000>;
rgb-channel-swap = <0>; /* 或者删除这句为RGB格式 */
BGR
be0: display-backend@1e60000 {
compatible = "allwinner,suniv-f1c100s-display-backend";
reg = <0x01e60000 0x10000>;
reg-names = "be";
interrupts = <31>;
clocks = <&ccu CLK_BUS_DE_BE>, <&ccu CLK_DE_BE>,
<&ccu CLK_DRAM_DE_BE>;
clock-names = "ahb", "mod",
"ram";
resets = <&ccu RST_BUS_DE_BE>;
reset-names = "be";
assigned-clocks = <&ccu CLK_DE_BE>;
assigned-clock-rates = <300000000>;
rgb-channel-swap = <1>; /* 设置为1为BGR格式 */
----------------------------
本站下载: f1c100s_buildroot.7z
离线
多谢 ^_^
离线
离线
谢谢, 已叉走.
离线
已下载了,真不错。melis系列扩展性不好
离线
我用这个一键Build
编译哪个glibc时
/dlfcn/stamp.oST' 的文件状态(stat): 没有那个文件或目 重新make可以继续
中间有多次这个错误,都是stamp.oST,但在不同的目录。
再次执行make
最后报错
/build/glibc-2.29-30-g2d3fefd7ce64ac1015701c96916fffacc073a877/build/elf/ld.so' failed
离线
没有遇到过,实在没有解决,就重新删除再从克隆开始。
离线
这个问题,可能是我在windows下用WSL引起的,在LINUX下没有这个问题,
但后面报
unable to execute 'swig': No such file or directory
error: command 'swig' failed with exit status 1
scripts/dtc/pylibfdt/Makefile:26: recipe for target 'scripts/dtc/pylibfdt/_libfdt.so' failed
需要手动apt swig
python-dev,
libssl-dev,
现在继续了,有问题在补贴。。
最近编辑记录 staunchheart (2020-01-22 17:00:57)
离线
同样搜了一个zero的版本
这个更方便,所有的依赖你码都在里面,比如linux,gcc
不是再去从别的网站下载
https://gitee.com/MicroScale/allwinner-buildroot
make licheepi_zero_defconfig
make
这些方便我们这些刚开始玩的人。。
离线
同样搜了一个zero的版本
这个更方便,所有的依赖你码都在里面,比如linux,gcc
不是再去从别的网站下载
https://gitee.com/MicroScale/allwinner-buildrootmake licheepi_zero_defconfig
make这些方便我们这些刚开始玩的人。。
这个不错, 叉走了 ^_^
离线
感谢分享, 终于找到了 RGB BGR 的切换代码.
离线
这个问题,可能是我在windows下用WSL引起的,在LINUX下没有这个问题,
但后面报
unable to execute 'swig': No such file or directory
error: command 'swig' failed with exit status 1
scripts/dtc/pylibfdt/Makefile:26: recipe for target 'scripts/dtc/pylibfdt/_libfdt.so' failed需要手动apt swig
python-dev,
libssl-dev,
现在继续了,有问题在补贴。。
我的解决方式:
sudo apt-get install python3-distutils libpython3-dev -y
参考: https://stackoverflow.com/questions/55749206/modulenotfounderror-no-module-named-distutils-core
离线
硬件平台:nano
软件 :楼主提供的buildroot
问题:
编译完成后,执行烧录到spiflash的脚本ok,确定烧录成功了,上电重启后,提示如下错误:
U-Boot SPL 2018.01 (Jun 18 2020 - 08:59:07)
DRAM: 32 MiB
Trying to boot from MMC1
Card did not respond to voltage select!
mmc_init: -95, time 22
spl: mmc init failed with error: -95
Trying to boot from sunxi SPI
U-Boot 2018.01 (Jun 18 2020 - 08:59:07 +0800) Allwinner Technology
CPU: Allwinner F Series (SUNIV)
Model: Lichee Pi Nano
DRAM: 32 MiB
MMC: SUNXI SD/MMC: 0
SF: unrecognized JEDEC id bytes: 0b, 40, 18
*** Warning - spi_flash_probe_bus_cs() failed, using default environment
In: serial@1c25000
Out: serial@1c25000
Err: serial@1c25000
Net: No ethernet found.
starting USB...
No controllers found
Hit any key to stop autoboot: 0
SF: unrecognized JEDEC id bytes: 0b, 40, 18
Failed to initialize SPI flash at 0:0 (error -2)
No SPI flash selected. Please run `sf probe'
No SPI flash selected. Please run `sf probe'
=>
离线
真的很不错,学习了
离线
编译完成后,烧录成功了,上电重启,最后报错是什么意思
离线
喔, gitee链接已经打不开了, 还好下载了晕哥的备份。
离线
我想知道怎么控制呢?用usb键盘还是用GPIO?
离线
这个问题,可能是我在windows下用WSL引起的,在LINUX下没有这个问题,
但后面报
unable to execute 'swig': No such file or directory
error: command 'swig' failed with exit status 1
scripts/dtc/pylibfdt/Makefile:26: recipe for target 'scripts/dtc/pylibfdt/_libfdt.so' failed需要手动apt swig
python-dev,
libssl-dev,
现在继续了,有问题在补贴。。
edit package/uboot-tools/Config.in.host
insert select BR2_PACKAGE_HOST_SWIG in line 12
make menuconfig
exit save
make
离线
离线
gitee链接已经打不开了,请问哪里有?
离线
大佬请问一下,我是F1C200S,运行nes巨慢是怎么回事呢
离线