了解了。如果 / 不是 /dev/md0,请根据你的实际根分区来调整步骤。以下是修订后的步骤:
- 备份
/boot分区的数据:sudo mkdir /mnt/backup_boot sudo mount /dev/mmcblk0p1 /mnt/backup_boot sudo rsync -aAXv /mnt/backup_boot/ /path/to/backup/location sudo umount /mnt/backup_boot
| set(CMAKE_SYSTEM_NAME Windows) | |
| set(CMAKE_SYSTEM_VERSION 1) | |
| if(USE_32BITS) | |
| message(STATUS "using 32bits") | |
| set(CMAKE_SYSTEM_PROCESSOR x86) | |
| else() | |
| set(CMAKE_SYSTEM_PROCESSOR x86_64) | |
| endif(USE_32BITS) | |
| if(USE_32BITS) |
| import Vue from 'vue' | |
| import App from './App' | |
| require('expose?$!expose?jQuery!jquery')//add this line | |
| require('bootstrap-webpack')//add this line | |
| /* eslint-disable no-new */ | |
| new Vue({ | |
| el: 'body', | |
| components: { App } | |
| }) |
| import android.app.Fragment; | |
| import android.content.Context; | |
| import android.databinding.ViewDataBinding; | |
| import android.support.v7.widget.RecyclerView; | |
| import android.view.View; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| /** |