Browse Source

Update the debian image

Bob Mottram 11 years ago
parent
commit
3e68454e1c
1 changed files with 14 additions and 7 deletions
  1. 14
    7
      beaglebone.txt

+ 14
- 7
beaglebone.txt View File

113
 
113
 
114
 #+BEGIN_SRC: bash
114
 #+BEGIN_SRC: bash
115
 cd ~/
115
 cd ~/
116
-wget http://freedombone.uk.to/debian-7.2-console-armhf-2013-11-15.tar.xz
116
+wget http://freedombone.uk.to/debian-jessie-console-armhf-2014-08-13.tar.xz
117
 #+END_SRC
117
 #+END_SRC
118
 
118
 
119
 Verify it.
119
 Verify it.
120
 
120
 
121
 #+BEGIN_SRC: bash
121
 #+BEGIN_SRC: bash
122
-sha256sum debian-7.2-console-armhf-2013-11-15.tar.xz
123
-262ea96d6bff530ad545e001eb2aa50b26a999c02f0c0e2e5f8536edf21c973a debian-7.2-console-armhf-2013-11-15.tar.xz
122
+sha256sum debian-jessie-console-armhf-2014-08-13.tar.xz
123
+fc225cfb3c2dfad92cccafa97e92c3cd3db9d94f4771af8da364ef59609f43de
124
 #+END_SRC
124
 #+END_SRC
125
 
125
 
126
 Uncompress it.
126
 Uncompress it.
127
 
127
 
128
 #+BEGIN_SRC: bash
128
 #+BEGIN_SRC: bash
129
-tar xJf debian-7.2-console-armhf-2013-11-15.tar.xz
130
-cd debian-7.2-console-armhf-2013-11-15
129
+tar xJf debian-jessie-console-armhf-2014-08-13.tar.xz
130
+cd debian-jessie-console-armhf-2014-08-13
131
 #+END_SRC
131
 #+END_SRC
132
 
132
 
133
 Create the disk image, where sdX is the name of the flash drive (probably it will be sdb or sdc).  An easy way to find out the device name of the flash drive is to enter the command:
133
 Create the disk image, where sdX is the name of the flash drive (probably it will be sdb or sdc).  An easy way to find out the device name of the flash drive is to enter the command:
140
 
140
 
141
 #+BEGIN_SRC: bash
141
 #+BEGIN_SRC: bash
142
 sudo apt-get install u-boot-tools dosfstools git-core kpartx wget parted
142
 sudo apt-get install u-boot-tools dosfstools git-core kpartx wget parted
143
-sudo ./setup_sdcard.sh --mmc /dev/sdX --uboot bone --swap-file 1024
143
+sudo ./setup_sdcard.sh --mmc /dev/sdX --dtb beaglebone
144
 #+END_SRC
144
 #+END_SRC
145
 
145
 
146
-Once completed then safely remove the microSD card via your file manager (usually right click and "safely remove" or "eject").
146
+Once that is completed we need to copy a boot file to enable the system to boot correctly:
147
+
148
+#+BEGIN_SRC: bash
149
+sudo cp /media/$USER/BOOT/bbb-uEnv.txt /media/$USER/BOOT/uEnv.txt
150
+sync
151
+#+END_SRC
152
+
153
+Now the microSD card can be safely removed via your file manager (usually right click and "safely remove" or "eject").
147
 
154
 
148
 ** Cubieboard
155
 ** Cubieboard
149
 
156