免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 3339 | 回复: 17
打印 上一主题 下一主题

好开心哦,自己的第一个脚本 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-02-27 13:32 |只看该作者 |倒序浏览
好开心哦,用自己编的一个脚本来执行Vxwork内核编译,虽然还比较傻,虽然还需要完善的很多,但是毕竟是自己的第一个脚本哦。发上来大家批评批评哈~
欢迎大家广泛扔鸡蛋!知道不足才能提高么!哈哈
  1. #!/bin/sh
  2. #This is a test program!
  3. trap 'rm -f msg.tmp;rm -f ../msg.tmp' EXIT
  4. dialog --msgbox "Welcome" 8 20
  5. menu=""
  6. board=""
  7. rootfs=""
  8. kernel=""
  9. test=""
  10. usermd=""

  11. get_menu()
  12. {
  13.         dialog --title "Menu" --menu "What do you want do?" 20 30 6 1 "Configure" 2 "Build rtcore" 3 "Build all" 4 "Build fs" 5 "Collect Logs" 6 "Quit" 2>msg.tmp
  14.         menu=$(cat msg.tmp)
  15.         return
  16. }

  17. #board_select(): Select a board.
  18. board_select()
  19. {
  20. #        dialog --clear
  21.         dialog --title "Board Select" --radiolist "Please select the board which you use" 20 30 5 1 "fsl_imx31ads" "on" 2 "arm_versatile_926ejs" "off" 3 "common_pc" "off" 4 "common_pc_64" "off" 5 "wrs_sbc85x0" "off" 2>msg.tmp
  22.         tmp=$(cat msg.tmp)
  23.         case "$tmp" in
  24.                 1)        board="fsl_imx31ads";;
  25.                 2)        board="arm_versatile_926ejs";;
  26.                 3)        board="common_pc";;
  27.                 4)        board="common_pc_64";;
  28.                 5)        board="wrs_sbc85x0";;
  29.                 *)        dialog --msgbox "Error, Please select the board correctly." 8 30
  30.                         exit 1;;
  31.         esac
  32.         return
  33. }

  34. #Rootfs_select(): Select a Rootfs.
  35. rootfs_select()
  36. {        
  37. #        dialog --clear        
  38.         dialog --title "RootFs select" --radiolist "Please select the RootFs of this config" 20 30 4 1 "glibc_std" "on" 2 "glibc_cgl" "off" 3 "glibc_small" "off" 4 "ulibc_small" "off" 2>msg.tmp
  39.         tmp=$(cat msg.tmp)
  40.         case "$tmp" in
  41.                 1)        rootfs="glibc_std";;
  42.                 2)        rootfs="glibc_cgl";;
  43.                 3)        rootfs="glibc_small";;
  44.                 4)        rootfs="ulibc_small";;
  45.                 *)        dialog --msgbox "Error, Please select the Rootfs correctly." 8 30
  46.                         exit 1;;
  47.         esac
  48.         return
  49. }

  50. kernel_select()
  51. {
  52. #        dialog --clear
  53.         dialog --title "Kernel Select" --radiolist "Please select the kernel:" 20 30 2 1 "Rtcore" "on" 2 "Other" "off" 2>msg.tmp
  54.         tmp=$(cat msg.tmp)
  55.         case "$tmp" in
  56.                 1)        kernel="--enable-kernel=rtcore ";;
  57.                 *)        kernel="";;
  58.         esac
  59.         return
  60. }

  61. #test_enable(): enable the test or not?
  62. test_enable()
  63. {
  64. #        dialog --clear
  65.         dialog --title "Test enable" --yesno "Enable the TEST or not?" 10 30
  66.         if [ $? = 0 ]
  67.         then
  68.                 test="--enable-test=yes"
  69.         else
  70.                 test=""
  71.         fi
  72.         return
  73. }

  74. #usermd_enable(): enable the usermode-agent or not? Add "--with-template=feature/debug " to the configure code.
  75. usermd_enable()
  76. {
  77.         dialog --title "Usermode-agent enable" --yesno "Would you like to enable the usermode-agent?" 10 30
  78.         if [ $? = 0 ]
  79.         then
  80.                 usermd="--with-template=feature/debug"
  81.         else
  82.                 usermd=""
  83.         fi
  84.         return
  85. }

  86. #config(): To run the configure function.
  87. config()
  88. {
  89.         board_select
  90.         kernel_select
  91.         rootfs_select
  92.         test_enable
  93.         usermd_enable
  94.         if [ -d "$board-$rootfs" ]
  95.         then
  96.                 dialog --title "WARRING" --yesno "There is a directory named $board-$rootfs, would like covor it?" 10 40
  97.                 if [ $? = 0 ]
  98.                 then
  99.                         rm -rf $board-$rootfs
  100.                 fi        
  101.         fi
  102.         mkdir $board-$rootfs
  103.         cd $board-$rootfs
  104.         echo "./configure --enable-board=$board $kernel --enable-board-rootfs=$rootfs --with-layer=rtcore-5.1 $test $usermd 2>&1 |tee $board-$rootfs-config-$(date +%Y%m%d%k%M).log" >msg.tmp
  105.         dialog --msgbox "$(cat msg.tmp)" 10 60
  106.         /lpgtest12/cdc/sustaining/fall07-2.0.3-lx05_dm_rt_sdk/wrlinux-2.0/wrlinux/configure --enable-board=$board $kernel --enable-board-rootfs=$rootfs --with-layer=rtcore-5.1 $test $usermd 2>&1 |tee $board-$rootfs-config-$(date +%Y%m%d%k%M).log;
  107.         dialog --msgbox "Congratulations, configure successfully." 8 40
  108.         return
  109. }

  110. func_make()
  111. {
  112.         dialog --msgbox "make -C build linux.rebuild" 8 30
  113.         echo "make -C build linux.rebuild 2>&1 |tee $board-$rootfs-$(date +%Y%m%d%k%M)-make.log" >msg.tmp
  114.         dialog --msgbox "$(cat msg.tmp)" 10 60
  115.         make -C build linux.rebuild 2>&1 |tee $board-$rootfs-$(date +%Y%m%d%k%M)-make.log;
  116.         return
  117. }

  118. make_fs()
  119. {
  120.         dialog --msgbox "make fs" 8 30
  121.         echo "make fs 2>&1 |tee $board-$rootfs-$(date +%Y%m%d%k%M)-make_fs.log" > msg.tmp
  122.         dialog --msgbox "$(cat msg.tmp)" 10 60
  123.         make fs 2>&1 |tee $board-$rootfs-$(date +%Y%m%d%k%M)-make_fs.log;
  124.         return
  125. }

  126. make_build_all()
  127. {
  128.         dialog --msgbox "make build-all" 8 30
  129.         echo "make build-all 2>&1 |tee $board-$rootfs-$(date +%Y%m%d%k%M)-make_build_all.log" >msg.tmp
  130.         dialog --msgbox "$(cat msg.tmp)" 10 60
  131.         make build-all 2>&1 |tee $board-$rootfs-$(date +%Y%m%d%k%M)-make_build_all.log;
  132.         return
  133. }

  134. collect_log()
  135. {
  136.         dialog --title "Collect Logs" --yesno "Collecting the log now?" 8 30
  137.         if [ $? = 0 ]
  138.         then
  139.                 mkdir ../LOG$(date +%Y%m%d%k%M)
  140.                 cp *.log ../LOG$(date +%Y%m%d%k%M)
  141.         fi
  142.         dialog --msgbox "Congrantulations, collect logs successfully." 8 30
  143.         return
  144. }

  145. until [ "$menu" = "6" ]
  146. do
  147.         get_menu
  148.         case "$menu" in
  149.                 1) config;;
  150.                 2) func_make;;
  151.                 3) make_fs;;
  152.                 4) make_build_all;;
  153.                 5) collect_log;;
  154.                 *) dialog --msgbox "Goodbye." 8 30
  155.                 exit 0;;
  156.         esac
  157. done
  158. exit 0
复制代码

[ 本帖最后由 simble1986 于 2009-2-27 13:34 编辑 ]

论坛徽章:
9
2015亚冠之阿尔纳斯尔
日期:2015-09-10 16:21:162015亚冠之塔什干火车头
日期:2015-07-01 16:23:022015年亚洲杯之巴勒斯坦
日期:2015-04-20 17:19:46子鼠
日期:2014-11-13 09:51:26未羊
日期:2014-08-28 18:13:36技术图书徽章
日期:2014-02-21 09:30:15酉鸡
日期:2014-01-14 11:12:49天蝎座
日期:2013-12-09 17:56:53平安夜徽章
日期:2015-12-26 00:06:30
2 [报告]
发表于 2009-02-27 13:36 |只看该作者
学习了~~

论坛徽章:
0
3 [报告]
发表于 2009-02-27 13:38 |只看该作者
不错,支持

论坛徽章:
0
4 [报告]
发表于 2009-02-27 13:40 |只看该作者
呵呵,一看都是函数,嘿嘿,恭喜仁兄!

论坛徽章:
0
5 [报告]
发表于 2009-02-27 13:41 |只看该作者
原帖由 飞鸿无痕 于 2009-2-27 13:40 发表
呵呵,一看都是函数,嘿嘿,恭喜仁兄!

哦?函数怎么了?

论坛徽章:
0
6 [报告]
发表于 2009-02-27 14:04 |只看该作者
第一个脚本就这么长,牛逼

论坛徽章:
0
7 [报告]
发表于 2009-02-27 14:04 |只看该作者
比我强多了,没写过这么长的脚本

论坛徽章:
0
8 [报告]
发表于 2009-02-27 14:11 |只看该作者
原帖由 infernor 于 2009-2-27 14:04 发表
第一个脚本就这么长,牛逼

呃……这是第一个实际用到的脚本,哈哈,前面练习的脚本多了去了,而且这个脚本里面应该有很多的地方都是很愚蠢的。

论坛徽章:
0
9 [报告]
发表于 2009-02-27 14:14 |只看该作者
练习的脚本不算啊?  ,我还没写出一个来,向你学习

论坛徽章:
0
10 [报告]
发表于 2009-02-27 14:22 |只看该作者
原帖由 haimming 于 2009-2-27 14:14 发表
练习的脚本不算啊?  ,我还没写出一个来,向你学习

练习的脚本都照书上抄的,怎么能算呢!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP