2018-10-24 Widora MT7688/26 openwrt 编译自己的软件加入menuconfig

https://github.com/CyC2018/CS-Notes

        在枯燥的程序工作激励我们直面一次一次挫败,继续鼓足勇气探究的原因是成就感。经历一次一次为什么,百度,谷歌出来的碎片拼接,最终实现一个小小目标的成就感居然有如此大的力量,感谢互联网知识时代,感谢那些知识的贡献者,无论是原创还是转发,都是线索,都最终帮助迷茫者走过一程。我写下我的微小收获,无论对错,也希望更多地人记录自己的经历,共同丰富知识宝库。

       废话多说了。知识太多,详细了解可以慢慢来。先操刀开干。

第一步肯定是需要假定你已经编译过一个能运行的Widora openwrt 平台了。漫长的编译时间让墙内人痛苦不堪,那么医IPX插件的方式将会极大缩短时间,提高开发效率....所有的开发起步都是一个HELLOWORLD。那么我就来弄一个,能被widora openwrt运行的helloworld :

        有1点非常重要,ubantu 14.04平台与widows不同,大小写敏感 ,所以坑里很多一字之差的谬误。

由于后期开发以插件形式运行,不整体编译openwrt 那么我就需要 SDK的配合。

openwrt解压的 GIT 目录下 执行: make menuconfig

选择上面的 build the openwrt SDK  和 Package the OpenWrt-based Toolchain

然后save

执行 make V=99

等候几分钟后会再 bin/ramips 目录里生成一个超级长的名字的压缩包

cd bin/ramips

ls


解压这个SDK 名字的文件。toolchain 暂时不用。
tar -xvf OpenWrt-SDK-ramips-mt7688_gcc-4.8-linaro_uClibc-0.9.33.2.Linux-x86_64.tar.bz2

cd OpenWrt-SDK-ramips-mt7688_gcc-4.8-linaro_uClibc-0.9.33.2.Linux-x86_64

ls 一下看看

package 目录就是我们写自己插件的地方。

cd package

mkdir helloworld

cd hellowrold

mkdir src

cd src

vim helloworld.c

抄了这个兄弟几句,哈哈



https://blog.csdn.net/hui523hui523hui523/article/details/38366427?utm_source=blogxgwz0



保存,然后再  vim Makefile  再抄几句

# build helloworld executable when user executes "make"

helloworld: helloworld.o

        $(CC) $(LDFLAGS) helloworld.o -o helloworld

helloworld.o: helloworld.c

        $(CC) $(CFLAGS) -c helloworld.c

# remove object files and executable when user executes "make clean"

clean:

        rm *.o helloworld


保存  ,make 一下,然后运行一下

./helloworld

make clean 防止意外。

cd .. 回到helloworld 目录创建一个可以被 SDK识别的 Makefile 文件。

vim Makefile

##################https://blog.csdn.net/icy_river/article/details/48260859

# OpenWrt MakefileforHelloWorld program

#

#

# Most of the variables used here are defined in

# theincludedirectives below. We just need to

# specify a basic description of the package,

# where to build our program, where to find

# the source files, and where to install the

# compiled program on the router.

#

# Be very careful of spacing inthisfile.

# Indents should be tabs,notspaces,and

# there should be no trailing whitespace in

# lines that are not commented.

#

##############################################

include$(TOPDIR)/rules.mk

# Nameandrelease number ofthispackage

PKG_NAME:=helloworld

PKG_RELEASE:=1

# This specifies the directory where we're going to build the program.

# The root build directory, $(BUILD_DIR), is bydefaultthe build_mipsel

# directory in your OpenWrt SDK directory

PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)

include $(INCLUDE_DIR)/package.mk

# Specify package informationforthisprogram.

# The variables defined here should be self explanatory.

# If you are running Kamikaze,deletethe DESCRIPTION

# variable belowanduncomment the Kamikaze define

# directiveforthe description below

define Package/helloworld

SECTION:=utils

CATEGORY:=Utilities

TITLE:=HelloWorld -- prints a snarky message

endef

# Uncomment portion belowforKamikazeanddeleteDESCRIPTION variable above

define Package/HelloWorld/description

If you can't figure out whatthisprogram does, you're probably brain-deadandneed immediate medical attention.

endef

# Specify what needs to be done to prepareforbuilding the package.

# In ourcase, we need to copy the source files to the build directory.

# This is NOT thedefault.  Thedefaultuses the PKG_SOURCE_URLandthe

# PKG_SOURCE which isnotdefined here to download the source from the web.

# In order to just build a simple program that we have just written, it is

# much easier todoitthisway.

define Build/Prepare

mkdir -p $(PKG_BUILD_DIR)

$(CP) ./src/* $(PKG_BUILD_DIR)/

endef

# We do not need to define Build/Configure or Build/Compile directives

# The defaults are appropriate for compiling a simple program such as this one

# Specify where and how to install the program. Since we only have one file,

# the HelloWorld executable, install it by copying it to the /bin directory on

# the router. The $(1) variable represents the root directory on the router running

# OpenWrt. The $(INSTALL_DIR) variable contains a command to prepare the install

# directory if it does not already exist.  Likewise $(INSTALL_BIN) contains the

# command to copy the binary file from its current location (in our case the build

# directory) to the install directory.

define Package/HelloWorld/install

$(INSTALL_DIR) $(1)/bin

$(INSTALL_BIN) $(PKG_BUILD_DIR)/HelloWorld $(1)/bin/

endef

# This line executes the necessary commands to compile our program.

# The above define directives specify all the information needed, but this

# line calls BuildPackage which in turn actually uses this information to

# build a package.

$(eval $(call BuildPackage,HelloWorld))


复制以上内容存进Makefile 里。注意大小写。 以后用其他名称的时候 将helloworld 换掉即可。

好了,退回到 OpenWrt-SDK-ramips-mt7688_gcc-4.8-linaro_uClibc-0.9.33.2.Linux-x86_64 目录

make 

cd bin/ramips/packages/base

ls

简单吧!

将 这个ipx 复制到openwrt板子上

到opkg 发挥作用了
opkg install HelloWorld_1_ramips_24kec.ipk

执行一下helloworld 

成功!!此图有烂尾楼重建的嫌疑。不要疑惑。




https://blog.csdn.net/lingyizhangfankai/article/details/47007811




http://archive.openwrt.org/chaos_calmer/15.05.1/ramips/mt7688/packages/packages/

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,287评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,346评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,277评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,132评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,147评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,106评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,019评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,862评论 0 274
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,301评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,521评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,682评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,405评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,996评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,651评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,803评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,674评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,563评论 2 352

推荐阅读更多精彩内容